Browse Source

disable AES_convert_key by #if 0'ing it out (suggested by mcb30)

tags/v0.9.3
Holger Lubitz 17 years ago
parent
commit
426c2c150d
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      src/crypto/axtls/aes.c

+ 4
- 0
src/crypto/axtls/aes.c View File

238
     memcpy(ctx->iv, iv, 16);
238
     memcpy(ctx->iv, iv, 16);
239
 }
239
 }
240
 
240
 
241
+#if 0
242
+/** currently unused function **/
243
+
241
 /**
244
 /**
242
  * Change a key for decryption.
245
  * Change a key for decryption.
243
  */
246
  */
256
         *k++ =w;
259
         *k++ =w;
257
     }
260
     }
258
 }
261
 }
262
+#endif
259
 
263
 
260
 /**
264
 /**
261
  * Encrypt a byte sequence (with a block size 16) using the AES cipher.
265
  * Encrypt a byte sequence (with a block size 16) using the AES cipher.

Loading…
Cancel
Save