summaryrefslogtreecommitdiffstats
path: root/src/crypto
diff options
context:
space:
mode:
authorHolger Lubitz2007-07-27 21:33:53 +0200
committerHolger Lubitz2007-07-27 21:33:53 +0200
commit42910594f73d8e58ac2f9b85cedc26073504c1fa (patch)
treedcc573ad3ff66a78a64261f3a429b3a560c24bdc /src/crypto
parentmake netboot() static (diff)
downloadipxe-42910594f73d8e58ac2f9b85cedc26073504c1fa.tar.gz
ipxe-42910594f73d8e58ac2f9b85cedc26073504c1fa.tar.xz
ipxe-42910594f73d8e58ac2f9b85cedc26073504c1fa.zip
disable AES_convert_key by #if 0'ing it out (suggested by mcb30)
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/axtls/crypto.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypto/axtls/crypto.h b/src/crypto/axtls/crypto.h
index f6277adc..855282fa 100644
--- a/src/crypto/axtls/crypto.h
+++ b/src/crypto/axtls/crypto.h
@@ -54,7 +54,9 @@ void AES_set_key(AES_CTX *ctx, const uint8_t *key,
void AES_cbc_encrypt(AES_CTX *ctx, const uint8_t *msg,
uint8_t *out, int length);
void AES_cbc_decrypt(AES_CTX *ks, const uint8_t *in, uint8_t *out, int length);
+#if 0 /** currently unused function **/
void AES_convert_key(AES_CTX *ctx);
+#endif
/**************************************************************************
* RC4 declarations