summaryrefslogtreecommitdiffstats
path: root/src/crypto/axtls_aes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/axtls_aes.c')
-rw-r--r--src/crypto/axtls_aes.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/crypto/axtls_aes.c b/src/crypto/axtls_aes.c
index 9e4044ea..8bd37586 100644
--- a/src/crypto/axtls_aes.c
+++ b/src/crypto/axtls_aes.c
@@ -32,17 +32,6 @@ FILE_LICENCE ( GPL2_OR_LATER );
*
*/
-/** Basic AES blocksize */
-#define AES_BLOCKSIZE 16
-
-/** AES context */
-struct aes_context {
- /** AES context for AXTLS */
- AES_CTX axtls_ctx;
- /** Cipher is being used for decrypting */
- int decrypting;
-};
-
/**
* Set key
*
@@ -154,7 +143,7 @@ static void aes_decrypt ( void *ctx, const void *src, void *dst,
}
/** Basic AES algorithm */
-static struct cipher_algorithm aes_algorithm = {
+struct cipher_algorithm aes_algorithm = {
.name = "aes",
.ctxsize = sizeof ( struct aes_context ),
.blocksize = AES_BLOCKSIZE,