Skip to content

Commit

Permalink
crypto: qce - Add mode for rfc4309
Browse files Browse the repository at this point in the history
rf4309 is the specification that uses aes ccm algorithms with IPsec
security packets. Add a submode to identify rfc4309 ccm(aes) algorithm
in the crypto driver.

Reviewed-by: Bjorn Andersson <[email protected]>
Signed-off-by: Thara Gopinath <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
tharagopinath authored and herbertx committed May 14, 2021
1 parent 6c34e44 commit 7ba9cd4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions drivers/crypto/qce/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@
#define QCE_MODE_CCM BIT(12)
#define QCE_MODE_MASK GENMASK(12, 8)

#define QCE_MODE_CCM_RFC4309 BIT(13)

/* cipher encryption/decryption operations */
#define QCE_ENCRYPT BIT(13)
#define QCE_DECRYPT BIT(14)
#define QCE_ENCRYPT BIT(30)
#define QCE_DECRYPT BIT(31)

#define IS_DES(flags) (flags & QCE_ALG_DES)
#define IS_3DES(flags) (flags & QCE_ALG_3DES)
Expand All @@ -73,6 +75,7 @@
#define IS_CTR(mode) (mode & QCE_MODE_CTR)
#define IS_XTS(mode) (mode & QCE_MODE_XTS)
#define IS_CCM(mode) (mode & QCE_MODE_CCM)
#define IS_CCM_RFC4309(mode) ((mode) & QCE_MODE_CCM_RFC4309)

#define IS_ENCRYPT(dir) (dir & QCE_ENCRYPT)
#define IS_DECRYPT(dir) (dir & QCE_DECRYPT)
Expand Down

0 comments on commit 7ba9cd4

Please sign in to comment.