소스 검색

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

tags/v0.9.3
Holger Lubitz 17 년 전
부모
커밋
426c2c150d
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4
    0
      src/crypto/axtls/aes.c

+ 4
- 0
src/crypto/axtls/aes.c 파일 보기

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

Loading…
취소
저장