From 5209d095d51e534ca1ca5fc47d637662df9a1eae Mon Sep 17 00:00:00 2001 From: Eugene Crosser Date: Tue, 29 Oct 2013 20:53:35 +0400 Subject: [PATCH] tweak tomcrypt --- tom_crypto.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tom_crypto.c b/tom_crypto.c index cdb02d0..79bd202 100644 --- a/tom_crypto.c +++ b/tom_crypto.c @@ -5,13 +5,13 @@ static int tom_encrypt(void *pt, int ptlen, void *key, int keylen, void *ct, int *ctlen) { - symmentric_cbc cbc; + symmetric_CBC cbc; unsigned char iv[16] = {0}; int index, err; if ((index = register_cipher(&aes_desc)) == -1) return -1; // if ((index = find_cipher("aes")) == -1) return -1; - cipher = cipher_descriptor[index]; + // cipher = cipher_descriptor[index]; if ((err = cbc_start(index, iv, key, keylen, 0, &cbc)) != CRYPT_OK) return err; if ((err = cbc_encrypt(pt, ct, ptlen, &cbc)) != CRYPT_OK) -- 2.39.2