计算 AES 加密消息的最大长度

标签 c encryption openssl

我正在使用此函数使用 openssl AES 256 CBC 加密数据:

int encryptAES(unsigned char *plaintext, int plaintext_len, unsigned char *key,
  unsigned char *iv, unsigned char *ciphertext)
{
  EVP_CIPHER_CTX *ctx;

  int len;

  int ciphertext_len;

  /* Create and initialise the context */
  if(!(ctx = EVP_CIPHER_CTX_new())) return handleErrors();

  /* Initialise the encryption operation. IMPORTANT - ensure you use a key
   * and IV size appropriate for your cipher
   * In this example we are using 256 bit AES (i.e. a 256 bit key). The
   * IV size for *most* modes is the same as the block size. For AES this
   * is 128 bits */
  if(1 != EVP_EncryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv))
    return handleErrors();

  /* Provide the message to be encrypted, and obtain the encrypted output.
   * EVP_EncryptUpdate can be called multiple times if necessary
   */

  if(1 != EVP_EncryptUpdate(ctx, ciphertext, &len, plaintext, plaintext_len))
    return handleErrors();
  ciphertext_len = len;

  /* Finalise the encryption. Further ciphertext bytes may be written at
   * this stage.
   */

  if(1 != EVP_EncryptFinal_ex(ctx, ciphertext + len, &len)) return handleErrors();
  ciphertext_len += len;

  /* Clean up */
  EVP_CIPHER_CTX_free(ctx);

  return ciphertext_len;
}

我想为这个函数提供一个固定大小的缓冲区ciphertext,如何计算加密消息的最大可能长度(ciphertext)

谢谢。

最佳答案

假设 PKCS#7 填充,这是 OpenSSL ECB 和 CBC 模式的默认值,加密长度将为:

plaintext_len + block_size - (plaintext_len % block_size)

在哪里

block_size = 16

用于 AES。最终结果始终是 block_size 的倍数。

关于计算 AES 加密消息的最大长度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44355901/

相关文章:

c - 如何在 AVX 或 SSE 指令中进行间接加载(聚集-分散)?

linux - OpenSSL:使用带有 SHA1 加密的 64 位 DSA 创建公钥/私钥对时遇到问题

Android - Crittografy Cipher 解密不起作用

ruby-on-rails-3 - 如何配置WEBrick以将中间证书与HTTPS一起使用?

java - "bad record MAC"Java 和 PostgreSQL 之间的 SSL 错误

openssl - 如何使用 QWAC 和 QSealC 配置文件(PSD2 特定属性)创建 eIDAS 证书以进行测试

c - C 中的魔数(Magic Number)

c++ - apple cpp 破坏宏参数粘贴

c - 改变 objective-c 标准有什么用吗?

c# - 如何通过 RSA 生成唯一的公钥和私钥