浏览代码

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

tags/v0.9.3
Holger Lubitz 18 年前
父节点
当前提交
42910594f7
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      src/crypto/axtls/crypto.h

+ 2
- 0
src/crypto/axtls/crypto.h 查看文件

54
 void AES_cbc_encrypt(AES_CTX *ctx, const uint8_t *msg, 
54
 void AES_cbc_encrypt(AES_CTX *ctx, const uint8_t *msg, 
55
         uint8_t *out, int length);
55
         uint8_t *out, int length);
56
 void AES_cbc_decrypt(AES_CTX *ks, const uint8_t *in, uint8_t *out, int length);
56
 void AES_cbc_decrypt(AES_CTX *ks, const uint8_t *in, uint8_t *out, int length);
57
+#if 0 /** currently unused function **/
57
 void AES_convert_key(AES_CTX *ctx);
58
 void AES_convert_key(AES_CTX *ctx);
59
+#endif
58
 
60
 
59
 /**************************************************************************
61
 /**************************************************************************
60
  * RC4 declarations 
62
  * RC4 declarations 

正在加载...
取消
保存