Skip to content

Commit

Permalink
Add AES_MODE_CBC to aes_mode_t
Browse files Browse the repository at this point in the history
  • Loading branch information
jakcron committed Nov 1, 2019
1 parent 21b84a3 commit ddde730
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aes.h
Expand Up @@ -8,7 +8,8 @@
typedef enum {
AES_MODE_ECB = MBEDTLS_CIPHER_AES_128_ECB,
AES_MODE_CTR = MBEDTLS_CIPHER_AES_128_CTR,
AES_MODE_XTS = MBEDTLS_CIPHER_AES_128_XTS
AES_MODE_XTS = MBEDTLS_CIPHER_AES_128_XTS,
AES_MODE_CBC = MBEDTLS_CIPHER_AES_128_CBC
} aes_mode_t;

typedef enum {
Expand Down

0 comments on commit ddde730

Please sign in to comment.