Searched refs:cra_u (Results 1 – 25 of 26) sorted by relevance
12
/linux-4.19.296/crypto/ |
D | algif_skcipher.c | 110 skcipher_request_set_tfm(&areq->cra_u.skcipher_req, tfm); in _skcipher_recvmsg() 111 skcipher_request_set_crypt(&areq->cra_u.skcipher_req, areq->tsgl, in _skcipher_recvmsg() 122 skcipher_request_set_callback(&areq->cra_u.skcipher_req, in _skcipher_recvmsg() 126 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : in _skcipher_recvmsg() 127 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req); in _skcipher_recvmsg() 136 skcipher_request_set_callback(&areq->cra_u.skcipher_req, in _skcipher_recvmsg() 141 crypto_skcipher_encrypt(&areq->cra_u.skcipher_req) : in _skcipher_recvmsg() 142 crypto_skcipher_decrypt(&areq->cra_u.skcipher_req), in _skcipher_recvmsg()
|
D | algif_aead.c | 284 aead_request_set_crypt(&areq->cra_u.aead_req, rsgl_src, in _aead_recvmsg() 286 aead_request_set_ad(&areq->cra_u.aead_req, ctx->aead_assoclen); in _aead_recvmsg() 287 aead_request_set_tfm(&areq->cra_u.aead_req, tfm); in _aead_recvmsg() 297 aead_request_set_callback(&areq->cra_u.aead_req, in _aead_recvmsg() 300 err = ctx->enc ? crypto_aead_encrypt(&areq->cra_u.aead_req) : in _aead_recvmsg() 301 crypto_aead_decrypt(&areq->cra_u.aead_req); in _aead_recvmsg() 310 aead_request_set_callback(&areq->cra_u.aead_req, in _aead_recvmsg() 315 crypto_aead_encrypt(&areq->cra_u.aead_req) : in _aead_recvmsg() 316 crypto_aead_decrypt(&areq->cra_u.aead_req), in _aead_recvmsg()
|
D | crypto_null.c | 118 .cra_u = { .cipher = { 133 .cra_u = { .blkcipher = { 146 .cra_u = { .compress = {
|
D | arc4.c | 124 .cra_u = { 142 .cra_u = {
|
D | tea.c | 229 .cra_u = { .cipher = { 242 .cra_u = { .cipher = { 255 .cra_u = { .cipher = {
|
D | 842.c | 113 .cra_u = { .compress = {
|
D | lz4hc.c | 129 .cra_u = { .compress = {
|
D | lzo.c | 130 .cra_u = { .compress = {
|
D | lz4.c | 128 .cra_u = { .compress = {
|
D | blowfish_generic.c | 118 .cra_u = { .cipher = {
|
D | khazad.c | 856 .cra_u = { .cipher = {
|
D | sm4_generic.c | 219 .cra_u = {
|
D | twofish_generic.c | 190 .cra_u = { .cipher = {
|
D | zstd.c | 222 .cra_u = { .compress = {
|
D | deflate.c | 287 .cra_u = { .compress = {
|
D | seed.c | 452 .cra_u = {
|
D | anubis.c | 681 .cra_u = { .cipher = {
|
D | cast6_generic.c | 268 .cra_u = {
|
D | des_generic.c | 963 .cra_u = { .cipher = { 978 .cra_u = { .cipher = {
|
D | aes_generic.c | 1451 .cra_u = {
|
D | cast5_generic.c | 525 .cra_u = {
|
D | serpent_generic.c | 642 .cra_u = { .cipher = { 655 .cra_u = { .cipher = {
|
D | fcrypt.c | 399 .cra_u = { .cipher = {
|
/linux-4.19.296/include/linux/ |
D | crypto.h | 373 #define cra_ablkcipher cra_u.ablkcipher 374 #define cra_blkcipher cra_u.blkcipher 375 #define cra_cipher cra_u.cipher 376 #define cra_compress cra_u.compress 483 } cra_u; member
|
/linux-4.19.296/include/crypto/ |
D | if_alg.h | 117 } cra_u; member
|
12