summaryrefslogtreecommitdiff
path: root/library/cipher_wrap.c
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <mpg@elzevir.fr>2013-08-31 17:31:03 +0200
committerManuel Pégourié-Gonnard <mpg@elzevir.fr>2013-08-31 18:07:42 +0200
commit9241be7ac56cf5bf76487e77f710961eaddc762b (patch)
treecf739d247c8376ded80a88dc72aab68c757745d6 /library/cipher_wrap.c
parent20d6a17af99ad538db902dbebf16879c0b3de687 (diff)
Change cipher prototypes for GCM
Diffstat (limited to 'library/cipher_wrap.c')
-rw-r--r--library/cipher_wrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c
index c8eee543..5c981005 100644
--- a/library/cipher_wrap.c
+++ b/library/cipher_wrap.c
@@ -271,7 +271,7 @@ const cipher_info_t aes_128_gcm_info = {
POLARSSL_MODE_GCM,
128,
"AES-128-GCM",
- 16,
+ 0,
16,
&gcm_aes_info
};
@@ -281,7 +281,7 @@ const cipher_info_t aes_256_gcm_info = {
POLARSSL_MODE_GCM,
256,
"AES-256-GCM",
- 16,
+ 0,
16,
&gcm_aes_info
};