diff options
author | fituldo <filip.tehlar@gmail.com> | 2019-04-12 12:26:43 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-04-14 14:44:56 +0000 |
commit | 89e66434a2c93a07d7e913bb66b2be5e6e6df14c (patch) | |
tree | 17b3ed7dfd68283b4a3d6f0fd6deed3336a19426 /src/vnet | |
parent | 4e08316f3ec2c98165f156c6551f1e6557931739 (diff) |
crypto: add support for AES-CTR cipher
Change-Id: I7d84bab7768421ed37813702c0413e52167f41ab
Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/crypto/crypto.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vnet/crypto/crypto.h b/src/vnet/crypto/crypto.h index 92b65a4722a..06f7e534e11 100644 --- a/src/vnet/crypto/crypto.h +++ b/src/vnet/crypto/crypto.h @@ -25,7 +25,10 @@ _(3DES_CBC, "3des-cbc") \ _(AES_128_CBC, "aes-128-cbc") \ _(AES_192_CBC, "aes-192-cbc") \ - _(AES_256_CBC, "aes-256-cbc") + _(AES_256_CBC, "aes-256-cbc") \ + _(AES_128_CTR, "aes-128-ctr") \ + _(AES_192_CTR, "aes-192-ctr") \ + _(AES_256_CTR, "aes-256-ctr") #define foreach_crypto_aead_alg \ _(AES_128_GCM, "aes-128-gcm") \ |