diff options
Diffstat (limited to 'src/include/ipxe/aes.h')
| -rw-r--r-- | src/include/ipxe/aes.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/include/ipxe/aes.h b/src/include/ipxe/aes.h index 5d645b207..4e44f9853 100644 --- a/src/include/ipxe/aes.h +++ b/src/include/ipxe/aes.h @@ -21,6 +21,10 @@ struct aes_context { /** AES context size */ #define AES_CTX_SIZE sizeof ( struct aes_context ) +/* AXTLS functions */ +extern void axtls_aes_encrypt ( const AES_CTX *ctx, uint32_t *data ); +extern void axtls_aes_decrypt ( const AES_CTX *ctx, uint32_t *data ); + extern struct cipher_algorithm aes_algorithm; extern struct cipher_algorithm aes_cbc_algorithm; |
