aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/odp/api/spec/crypto.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/odp/api/spec/crypto.h b/include/odp/api/spec/crypto.h
index c57873abe..9e1191088 100644
--- a/include/odp/api/spec/crypto.h
+++ b/include/odp/api/spec/crypto.h
@@ -76,6 +76,9 @@ typedef enum {
/** Triple DES with cipher block chaining */
ODP_CIPHER_ALG_3DES_CBC,
+ /** Triple DES with Electronic Codebook */
+ ODP_CIPHER_ALG_3DES_ECB,
+
/** AES with cipher block chaining */
ODP_CIPHER_ALG_AES_CBC,
@@ -278,6 +281,9 @@ typedef union odp_crypto_cipher_algos_t {
/** ODP_CIPHER_ALG_3DES_CBC */
uint32_t trides_cbc : 1;
+ /** ODP_CIPHER_ALG_3DES_ECB */
+ uint32_t trides_ecb : 1;
+
/** ODP_CIPHER_ALG_AES_CBC */
uint32_t aes_cbc : 1;