1. 首页
  2. 安全技术
  3. 网络安全
  4. AES128/192/256 C语言实现AES加密/解密实测可用

AES128/192/256 C语言实现AES加密/解密实测可用

上传者: 2020-08-18 01:08:43上传 ZIP文件 16.93KB 热度 99次
aes.c aes.h test.c 本人实测可以使用,基于C的AES算法代码,希望能帮到有需要的。以下是相关模式调用的函数。 void AES_init_ctx(struct AES_ctx* ctx, const uint8_t* key); void AES_init_ctx_iv(struct AES_ctx* ctx, const uint8_t* key, const uint8_t* iv); void AES_ctx_set_iv(struct AES_ctx* ctx, const uint8_t* iv); void AES_ECB_encrypt(const struc
用户评论