On Mon, 9 Nov 2020 17:39:24 +0530 Srujana Challa wrote: > CPT offload module utilises the linux crypto framework to offload > crypto processing. This patch registers supported algorithms by > calling registration functions provided by the kernel crypto API. > > The module currently supports: > - AES block cipher in CBC,ECB,XTS and CFB mode. > - 3DES block cipher in CBC and ECB mode. > - AEAD algorithms. > authenc(hmac(sha1),cbc(aes)), > authenc(hmac(sha256),cbc(aes)), > authenc(hmac(sha384),cbc(aes)), > authenc(hmac(sha512),cbc(aes)), > authenc(hmac(sha1),ecb(cipher_null)), > authenc(hmac(sha256),ecb(cipher_null)), > authenc(hmac(sha384),ecb(cipher_null)), > authenc(hmac(sha512),ecb(cipher_null)), > rfc4106(gcm(aes)). Herbert, could someone who knows about crypto take a look at this, if the intention is to merge this via net-next?