/* Values for NULL algorithms */ #ifndef _CRYPTO_NULL_H #define _CRYPTO_NULL_H #define NULL_KEY_SIZE 0 #define NULL_BLOCK_SIZE 1 #define NULL_DIGEST_SIZE 0 #define NULL_IV_SIZE 0 struct crypto_skcipher *crypto_get_default_null_skcipher(void); void crypto_put_default_null_skcipher(void); static inline struct crypto_skcipher *crypto_get_default_null_skcipher2(void) { return crypto_get_default_null_skcipher(); } static inline void crypto_put_default_null_skcipher2(void) { crypto_put_default_null_skcipher(); } #endif Git repository'/>
summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Expand)AuthorFilesLines
2017-02-09sctp: implement sender-side procedures for SSN/TSN Reset Request ParameterXin Long2-0/+2
2017-02-09sctp: add support for generating stream reconf ssn/tsn reset request chunkXin Long2-0/+7
2017-02-09sctp: drop unnecessary __packed from some stream reconf structuresXin Long1-3/+3
2017-02-08ipv4: fib: Notify about nexthop status changesIdo Schimmel1-0/+7
2017-02-08net: stmmac: Remove the bus_setup function pointerLABBE Corentin1-1/+0
2017-02-08gro_cells: move to net/core/gro_cells.cEric Dumazet1-82/+4
2017-02-08net: phy: Add LED mode driver for Microsemi PHYs.Raju Lakkaraju