AES CTR OpenSSL命令行与EVP_aes_128_ctr C代码不匹配

时间:2018-06-15 23:28:20

标签: c encryption openssl aes encryption-symmetric

CTR-AES256 Encrypt does not match OpenSSL -aes-256-ctr< - 此帖没有帮助

我尝试使用以下用于AES-128-CTR加密的Openssl EVP函数的C实现,但与命令行OpenSSL结果相比,我得到的结果不正确。

奇怪的是,当我尝试使用更大尺寸的明文(600字节或更多)时,C代码和命令行之间只有最后600字节的密码不同。如果需要,我也可以在此处粘贴该结果。

AES-128-CTR的C代码实现

static const unsigned char key[16] = {
    0x00, 0x01, 0x02, 0x03, 
    0x04, 0x05, 0x06, 0x07, 
    0x08, 0x09, 0x0a, 0x0b, 
    0x0c, 0x0d, 0x0e, 0x0f, 
};

static const unsigned char iv[16] = {
    0x01, 0x23, 0x45, 0x67, 
    0x89, 0xab, 0xcd, 0xef, 
    0x88, 0x88, 0x88, 0x88, 
    0xC0, 0x00, 0x00, 0x00, 
};

FILE *fp_output = fopen("cipherCode.bin", "wb");

// Encrypt Plaintext

EVP_CIPHER_CTX *ctx;
int outlen;
unsigned char cipher[size];

if(!(ctx = EVP_CIPHER_CTX_new())) handleErrors();

if(!(EVP_EncryptInit_ex(ctx, EVP_aes_128_ctr(), NULL, key, iv))) handleErrors();

if(!(EVP_EncryptUpdate(ctx, cipher, &outlen, plaintext, size))) handleErrors();

if(!(EVP_EncryptFinal_ex(ctx, cipher + outlen, &outlen))) handleErrors();

/*---Edit----

// EVP_CIPHER_CTX_set_padding(ctx, 0); <-- removed this as it isnt necessary 

-----------*/

EVP_CIPHER_CTX_free(ctx);

// Write result cipher into output file
fwrite((unsigned char *)&cipher[0], outlen, 1, fp_output);
fclose(fp_output);

OpenSSL命令行:

openssl enc -aes-128-ctr -in plaintext.bin -out cipherCL.bin -K 000102030405060708090a0b0c0d0e0f -iv 0123456789abcdef88888888c0000000 -p -nopad

同样的明文,密钥和IV用于两者。

输入:

Plaintext:

0000000 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff

输出继电器:

Hexdiff(为清晰起见缩短了):

Visuel HexDiff v 0.0.53 by tTh 2007                             dec   7bits  

0   00 00 00 00 00 00 00 00 10 90 66 01 00 00 00 00              f     

** cipherCode.bin                                    16        0   0%      

0   1e a4 43 3f d8 4c 8c b7 1a e7 f0 af 85 0c d2 c2      C? L

** cipherCL.bin                                   16        0   0%      

2 个答案:

答案 0 :(得分:0)

我在程序中发现了这个问题。我没有将密码变量定义为静态。现在我将其定义为静态,将正确的密码数据写入文件。

为什么静态工作? 我调用了一个加密函数来计算密码,然后返回密码。由于密码未声明为 static ,因此在退出函数后它会丢失其值,因此返回的数据与密码中的数据不同。在将密码声明为 static 之后,在函数调用之后保留密码的值并在文件中写入正确的信息。

答案 1 :(得分:-1)

我建议您使用这个免费的AES库 link

用c编写的AES ECB,CTR和CBC加密算法的小型便携式实现。它包含您需要的一切,而且非常简单。 顺便说一句,您可以通过在aes.h中定义符号AES192或AES256来覆盖128位或128位的默认密钥大小。