/* * Shared async block cipher helpers */ #ifndef _CRYPTO_ABLK_HELPER_H #define _CRYPTO_ABLK_HELPER_H #include #include #include struct async_helper_ctx { struct cryptd_ablkcipher *cryptd_tfm; }; extern int ablk_set_key(struct crypto_ablkcipher *tfm, const u8 *key, unsigned int key_len); extern int __ablk_encrypt(struct ablkcipher_request *req); extern int ablk_encrypt(struct ablkcipher_request *req); extern int ablk_decrypt(struct ablkcipher_request *req); extern void ablk_exit(struct crypto_tfm *tfm); extern int ablk_init_common(struct crypto_tfm *tfm, const char *drv_name); extern int ablk_init(struct crypto_tfm *tfm); #endif /* _CRYPTO_ABLK_HELPER_H */ > : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
AgeCommit message (Expand)AuthorFilesLines
2017-02-11net: rename dst_neigh_output back to neigh_outputJulian Anastasov2-12/+10
2017-02-11tap: tap as an independent moduleSainath Grandhi1-2/+2
2017-02-11tap: Extending tap device create/destroy APIsSainath Grandhi1-2/+2
2017-02-11tap: Abstract type of virtual interface from tap implementationSainath Grandhi1-4/+53
2017-02-11tap: Tap character device creation/destroy APISainath Grandhi1-0/+3
2017-02-11tap: Renaming tap related APIs, data structures, macrosSainath Grandhi3-25/+25
2017-02-11tap: Refactoring macvtap.cSainath Grandhi1-0/+10
2017-02-11Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller