commit | 83f3fc0d772d1137b225a9c9bacec084177f2e70 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Sep 04 12:07:24 2013 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Wed Sep 04 12:14:13 2013 +0200 |
tree | 8a336c8140265c60664e4e208c7efd250d4234dc | |
parent | f7ce67f0d2322f218347f43e172f1f9a055a54b9 [diff] [blame] |
Add AES-192-GCM
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c index ebe60cf..79daaf9 100644 --- a/library/cipher_wrap.c +++ b/library/cipher_wrap.c
@@ -286,6 +286,17 @@ &gcm_aes_info }; +const cipher_info_t aes_192_gcm_info = { + POLARSSL_CIPHER_AES_192_GCM, + POLARSSL_MODE_GCM, + 192, + "AES-192-GCM", + 12, + 1, + 16, + &gcm_aes_info +}; + const cipher_info_t aes_256_gcm_info = { POLARSSL_CIPHER_AES_256_GCM, POLARSSL_MODE_GCM,