2 # This was developed in house and reported to the upstream.
4 --- openssl-1.0.1e/crypto/evp/e_aes.c Tue Jul 2 11:03:12 2013
5 +++ openssl-1.0.1e/crypto/evp/e_aes.c.new Tue Jul 2 11:04:56 2013
7 static int aes_cbc_cipher(EVP_CIPHER_CTX *ctx, unsigned char *out,
8 const unsigned char *in, size_t len)
10 + size_t bl = ctx->cipher->block_size;
11 EVP_AES_KEY *dat = (EVP_AES_KEY *) ctx->cipher_data;
17 (*dat->stream.cbc) (in, out, len, &dat->ks, ctx->iv, ctx->encrypt);
18 else if (ctx->encrypt)