/* * 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 */ /a> : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/ipv6
AgeCommit message (Expand)AuthorFilesLines
2017-02-11net: rename dst_neigh_output back to neigh_outputJulian Anastasov1-1/+1
2017-02-11Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller