]> www.average.org Git - pam_pcsc_cr.git/commitdiff
tweak tomcrypt
authorEugene Crosser <crosser@average.org>
Tue, 29 Oct 2013 16:53:35 +0000 (20:53 +0400)
committerEugene Crosser <crosser@average.org>
Tue, 29 Oct 2013 16:53:35 +0000 (20:53 +0400)
tom_crypto.c

index cdb02d05aee3f46b71f01f0e3f2dd2728fc3431d..79bd2023f800cc15d694d605a1e8f718b21c9b29 100644 (file)
@@ -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)