xref: /openbmc/linux/include/crypto/null.h (revision 33023463)
172567258SHoria Geanta /* Values for NULL algorithms */
272567258SHoria Geanta 
372567258SHoria Geanta #ifndef _CRYPTO_NULL_H
472567258SHoria Geanta #define _CRYPTO_NULL_H
572567258SHoria Geanta 
672567258SHoria Geanta #define NULL_KEY_SIZE		0
772567258SHoria Geanta #define NULL_BLOCK_SIZE		1
872567258SHoria Geanta #define NULL_DIGEST_SIZE	0
972567258SHoria Geanta #define NULL_IV_SIZE		0
1072567258SHoria Geanta 
1133023463SHerbert Xu struct crypto_blkcipher *crypto_get_default_null_skcipher(void);
1233023463SHerbert Xu void crypto_put_default_null_skcipher(void);
1333023463SHerbert Xu 
1472567258SHoria Geanta #endif
15