我试图执行以下问题中给出的答案 - AES(aes-cbc-128,aes-cbc-192,aes-cbc-256)使用开放sl C进行加密/解密
我不妨把代码贴在这里——
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <openssl/aes.h>
#include <openssl/rand.h>
// a simple hex-print routine. could be modified to print 16 bytes-per-line
static void hex_print(const void* pv, size_t len)
{
const unsigned char * p = (const unsigned char*)pv;
if (NULL == pv)
printf("NULL");
else
{
size_t i = 0;
for (; i<len;++i)
printf("%02X ", *p++);
}
printf("\n");
}
// main entrypoint
int main(int argc, char **argv)
{
int keylength;
printf("Give a key length [only 128 or 192 or 256!]:\n");
scanf("%d", &keylength);
/* generate a key with a given length */
unsigned char aes_key[keylength/8];
memset(aes_key, 0, keylength/8);
if (!RAND_bytes(aes_key, keylength/8))
exit(-1);
size_t inputslength = 0;
printf("Give an input's length:\n");
scanf("%lu", &inputslength);
/* generate input with a given length */
unsigned char aes_input[inputslength];
memset(aes_input, 'X', inputslength);
/* init vector */
unsigned char iv_enc[AES_BLOCK_SIZE], iv_dec[AES_BLOCK_SIZE];
RAND_bytes(iv_enc, AES_BLOCK_SIZE);
memcpy(iv_dec, iv_enc, AES_BLOCK_SIZE);
// buffers for encryption and decryption
const size_t encslength = ((inputslength + AES_BLOCK_SIZE) / AES_BLOCK_SIZE) * AES_BLOCK_SIZE;
unsigned char enc_out[encslength];
unsigned char dec_out[inputslength];
memset(enc_out, 0, sizeof(enc_out));
memset(dec_out, 0, sizeof(dec_out));
// so i can do with this aes-cbc-128 aes-cbc-192 aes-cbc-256
AES_KEY enc_key, dec_key;
AES_set_encrypt_key(aes_key, keylength, &enc_key);
AES_cbc_encrypt(aes_input, enc_out, inputslength, &enc_key, iv_enc, AES_ENCRYPT);
AES_set_decrypt_key(aes_key, keylength, &dec_key);
AES_cbc_encrypt(enc_out, dec_out, encslength, &dec_key, iv_dec, AES_DECRYPT);
printf("original:\t");
hex_print(aes_input, sizeof(aes_input));
printf("encrypt:\t");
hex_print(enc_out, sizeof(enc_out));
printf("decrypt:\t");
hex_print(dec_out, sizeof(dec_out));
return 0;
}
这运行得很好,但我想先加密一次字符串,然后再解密它,所以我手边没有输入长度
。因此,我将无法计算encslength
。
如何在不知道加密的实际字符串的情况下获得<code>encslength</code>。
由于没有太多的活动,我将把我的评论变成一个答案:你不需要“计算”长度
:它是你得到的加密字符串的长度。如果您存储字符串以供以后解密,则您知道其大小。
只有在加密时才需要计算,并且必须准备一个输出缓冲区:AES处理预定义大小的块:如果输入字符串的长度不是< code>AES_BLOCK_SIZE的倍数,您的输入将被填充(并且您将获得更大的输出)。无论如何,您获得的输出字符串的大小必须是< code>AES_BLOCK_SIZE的倍数。该字符串将被解密为长度应小于或等于您的加密邮件的字符串。
本文向大家介绍写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。相关面试题,主要包含被问及写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。时的应答技巧和注意事项,需要的朋友参考一下 【参考答案】 main() { intlen; char *s tr[20]; printf("please input a string:\n"); scanf("%
本文向大家介绍jQuery 限制输入字符串长度,包括了jQuery 限制输入字符串长度的使用技巧和注意事项,需要的朋友参考一下 我们后台做程序的时候,比如录入一篇文章,文章会有摘要,我们希望文章的字符长度是我们可以控制的,我们不希望它太长,比如限制只能输入250个字符,下面的代码实现了这种功能。 先来看一下效果图 代码如下: 以上就是本文的全部内容,希望能给大家一个参考,也希望大家多多支持呐喊教程
我正在尝试使用pycrypto加密我的数据。我已经为此编写了以下代码。 但我的错误率越来越低 如何控制输入字符串?输入字符串可以是任意长度。
本文向大家介绍PHP封装的字符串加密解密函数,包括了PHP封装的字符串加密解密函数的使用技巧和注意事项,需要的朋友参考一下 程序中经常使用的PHP加密解密字符串函数 代码如下: 使用方法: 非常给力的authcode加密函数,Discuz!经典代码(带详解): 函数authcode($string, $operation, $key, $expiry)中的$string:字符串,明文或密文;$op
函数名称:获取字符串长度 函数功能:获取字符串长度 函数方法 num = string.len(str) 参数 类型 必填 说明 str string 是 需要计算的字符串 返回值 类型 说明 num number/nil 字符串长度 函数用例 str="JUST DO IT" num = string.len(str) dialog("字符串长度:"..num,5000)