added support for AES counter mode in ESP

proposal keywords: aes128ctr aes192ctr aes256ctr
This commit is contained in:
Martin Willi
2009-04-27 12:16:52 +00:00
parent 3bf7c2491f
commit 18eef5d6b6
3 changed files with 7 additions and 3 deletions
@@ -170,7 +170,7 @@ static kernel_algorithm_t encryption_algs[] = {
/* {ENCR_DES_IV32, "***" }, */
{ENCR_NULL, "cipher_null" },
{ENCR_AES_CBC, "aes" },
/* {ENCR_AES_CTR, "***" }, */
{ENCR_AES_CTR, "rfc3686(ctr(aes))" },
{ENCR_AES_CCM_ICV8, "rfc4309(ccm(aes))" },
{ENCR_AES_CCM_ICV12, "rfc4309(ccm(aes))" },
{ENCR_AES_CCM_ICV16, "rfc4309(ccm(aes))" },