diff options
Diffstat (limited to 'gpxe/src/crypto/axtls/crypto.h')
-rw-r--r-- | gpxe/src/crypto/axtls/crypto.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gpxe/src/crypto/axtls/crypto.h b/gpxe/src/crypto/axtls/crypto.h index de1dbeb4..12acb27f 100644 --- a/gpxe/src/crypto/axtls/crypto.h +++ b/gpxe/src/crypto/axtls/crypto.h @@ -55,6 +55,8 @@ 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); void AES_convert_key(AES_CTX *ctx); +void AES_encrypt(const AES_CTX *ctx, uint32_t *data); +void AES_decrypt(const AES_CTX *ctx, uint32_t *data); /************************************************************************** * RC4 declarations |