/linux-4.4.14/Documentation/DocBook/ |
D | crypto-API.xml.db | 3 API-struct-ablkcipher-alg 8 API-crypto-alloc-ablkcipher 9 API-crypto-free-ablkcipher 10 API-crypto-has-ablkcipher 11 API-crypto-ablkcipher-ivsize 12 API-crypto-ablkcipher-blocksize 13 API-crypto-ablkcipher-setkey 14 API-crypto-ablkcipher-reqtfm 15 API-crypto-ablkcipher-encrypt 16 API-crypto-ablkcipher-decrypt [all …]
|
/linux-4.4.14/crypto/ |
D | skcipher.c | 130 struct crypto_ablkcipher *ablkcipher = *ctx; in skcipher_setkey_ablkcipher() local 133 crypto_ablkcipher_clear_flags(ablkcipher, ~0); in skcipher_setkey_ablkcipher() 134 crypto_ablkcipher_set_flags(ablkcipher, in skcipher_setkey_ablkcipher() 137 err = crypto_ablkcipher_setkey(ablkcipher, key, keylen); in skcipher_setkey_ablkcipher() 139 crypto_ablkcipher_get_flags(ablkcipher) & in skcipher_setkey_ablkcipher() 191 struct crypto_ablkcipher *ablkcipher; in crypto_init_skcipher_ops_ablkcipher() local 203 ablkcipher = __crypto_ablkcipher_cast(abtfm); in crypto_init_skcipher_ops_ablkcipher() 204 *ctx = ablkcipher; in crypto_init_skcipher_ops_ablkcipher() 211 skcipher->ivsize = crypto_ablkcipher_ivsize(ablkcipher); in crypto_init_skcipher_ops_ablkcipher() 212 skcipher->reqsize = crypto_ablkcipher_reqsize(ablkcipher) + in crypto_init_skcipher_ops_ablkcipher()
|
D | ablkcipher.c | 417 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher; in crypto_ablkcipher_show() local 423 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize); in crypto_ablkcipher_show() 424 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize); in crypto_ablkcipher_show() 425 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize); in crypto_ablkcipher_show() 426 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<default>"); in crypto_ablkcipher_show() 498 struct ablkcipher_alg *ablkcipher = &alg->cra_ablkcipher; in crypto_givcipher_show() local 504 seq_printf(m, "min keysize : %u\n", ablkcipher->min_keysize); in crypto_givcipher_show() 505 seq_printf(m, "max keysize : %u\n", ablkcipher->max_keysize); in crypto_givcipher_show() 506 seq_printf(m, "ivsize : %u\n", ablkcipher->ivsize); in crypto_givcipher_show() 507 seq_printf(m, "geniv : %s\n", ablkcipher->geniv ?: "<built-in>"); in crypto_givcipher_show()
|
D | Makefile | 18 crypto_blkcipher-y := ablkcipher.o
|
/linux-4.4.14/drivers/crypto/ |
D | atmel-tdes.c | 932 .cra_u.ablkcipher = { 952 .cra_u.ablkcipher = { 973 .cra_u.ablkcipher = { 994 .cra_u.ablkcipher = { 1015 .cra_u.ablkcipher = { 1036 .cra_u.ablkcipher = { 1057 .cra_u.ablkcipher = { 1078 .cra_u.ablkcipher = { 1098 .cra_u.ablkcipher = { 1119 .cra_u.ablkcipher = { [all …]
|
D | atmel-aes.c | 972 .cra_u.ablkcipher = { 992 .cra_u.ablkcipher = { 1013 .cra_u.ablkcipher = { 1034 .cra_u.ablkcipher = { 1055 .cra_u.ablkcipher = { 1076 .cra_u.ablkcipher = { 1097 .cra_u.ablkcipher = { 1118 .cra_u.ablkcipher = { 1141 .cra_u.ablkcipher = {
|
D | hifn_795x.c | 2330 struct ablkcipher_alg ablkcipher; member 2339 .ablkcipher = { 2349 .ablkcipher = { 2359 .ablkcipher = { 2370 .ablkcipher = { 2384 .ablkcipher = { 2394 .ablkcipher = { 2404 .ablkcipher = { 2415 .ablkcipher = { 2429 .ablkcipher = { [all …]
|
D | n2_core.c | 1118 struct ablkcipher_alg ablkcipher; member 1128 .ablkcipher = { 1143 .ablkcipher = { 1156 .ablkcipher = { 1170 .ablkcipher = { 1185 .ablkcipher = { 1198 .ablkcipher = { 1212 .ablkcipher = { 1226 .ablkcipher = { 1239 .ablkcipher = { [all …]
|
D | ixp4xx_crypto.c | 1197 .cra_u = { .ablkcipher = { 1212 .cra_u = { .ablkcipher = { 1224 .cra_u = { .ablkcipher = { 1238 .cra_u = { .ablkcipher = { 1250 .cra_u = { .ablkcipher = { 1264 .cra_u = { .ablkcipher = { 1276 .cra_u = { .ablkcipher = { 1290 .cra_u = { .ablkcipher = {
|
D | omap-des.c | 794 .cra_u.ablkcipher = { 816 .cra_u.ablkcipher = { 839 .cra_u.ablkcipher = { 861 .cra_u.ablkcipher = {
|
D | s5p-sss.c | 591 .cra_u.ablkcipher = { 612 .cra_u.ablkcipher = {
|
D | omap-aes.c | 845 .cra_u.ablkcipher = { 867 .cra_u.ablkcipher = { 893 .cra_u.ablkcipher = {
|
D | mxs-dcp.c | 795 .ablkcipher = { 818 .ablkcipher = {
|
D | mv_cesa.c | 944 .ablkcipher = { 967 .ablkcipher = {
|
D | sahara.c | 1222 .cra_u.ablkcipher = { 1242 .cra_u.ablkcipher = {
|
/linux-4.4.14/drivers/crypto/sunxi-ss/ |
D | sun4i-ss-core.c | 142 .cra_u.ablkcipher = { 164 .cra_u.ablkcipher = { 185 .cra_u.ablkcipher = { 207 .cra_u.ablkcipher = {
|
/linux-4.4.14/arch/x86/crypto/ |
D | serpent_avx2_glue.c | 432 .ablkcipher = { 454 .ablkcipher = { 477 .ablkcipher = { 501 .ablkcipher = { 526 .ablkcipher = {
|
D | twofish_avx_glue.c | 456 .ablkcipher = { 477 .ablkcipher = { 499 .ablkcipher = { 522 .ablkcipher = { 546 .ablkcipher = {
|
D | camellia_aesni_avx_glue.c | 452 .ablkcipher = { 473 .ablkcipher = { 495 .ablkcipher = { 518 .ablkcipher = { 542 .ablkcipher = {
|
D | serpent_sse2_glue.c | 505 .ablkcipher = { 526 .ablkcipher = { 548 .ablkcipher = { 571 .ablkcipher = { 595 .ablkcipher = {
|
D | cast6_avx_glue.c | 489 .ablkcipher = { 510 .ablkcipher = { 532 .ablkcipher = { 555 .ablkcipher = { 579 .ablkcipher = {
|
D | serpent_avx_glue.c | 495 .ablkcipher = { 516 .ablkcipher = { 538 .ablkcipher = { 561 .ablkcipher = { 585 .ablkcipher = {
|
D | camellia_aesni_avx2_glue.c | 460 .ablkcipher = { 481 .ablkcipher = { 503 .ablkcipher = { 526 .ablkcipher = { 550 .ablkcipher = {
|
D | cast5_avx_glue.c | 413 .ablkcipher = { 434 .ablkcipher = { 456 .ablkcipher = {
|
D | aesni-intel_glue.c | 1220 .ablkcipher = { 1241 .ablkcipher = { 1286 .ablkcipher = { 1311 .ablkcipher = { 1377 .ablkcipher = { 1399 .ablkcipher = {
|
/linux-4.4.14/drivers/crypto/qce/ |
D | Makefile | 6 ablkcipher.o
|
D | ablkcipher.c | 64 struct crypto_ablkcipher *ablkcipher = crypto_ablkcipher_reqtfm(req); in qce_ablkcipher_async_req_handle() local 74 rctx->ivsize = crypto_ablkcipher_ivsize(ablkcipher); in qce_ablkcipher_async_req_handle()
|
/linux-4.4.14/drivers/crypto/caam/ |
D | caamalg.c | 1456 static int ablkcipher_setkey(struct crypto_ablkcipher *ablkcipher, in ablkcipher_setkey() argument 1459 struct caam_ctx *ctx = crypto_ablkcipher_ctx(ablkcipher); in ablkcipher_setkey() 1460 struct ablkcipher_tfm *crt = &ablkcipher->base.crt_ablkcipher; in ablkcipher_setkey() 1461 struct crypto_tfm *tfm = crypto_ablkcipher_tfm(ablkcipher); in ablkcipher_setkey() 1708 static int xts_ablkcipher_setkey(struct crypto_ablkcipher *ablkcipher, in xts_ablkcipher_setkey() argument 1711 struct caam_ctx *ctx = crypto_ablkcipher_ctx(ablkcipher); in xts_ablkcipher_setkey() 1717 crypto_ablkcipher_set_flags(ablkcipher, in xts_ablkcipher_setkey() 1903 struct crypto_ablkcipher *ablkcipher = crypto_ablkcipher_reqtfm(req); in ablkcipher_unmap() local 1904 int ivsize = crypto_ablkcipher_ivsize(ablkcipher); in ablkcipher_unmap() 1968 struct crypto_ablkcipher *ablkcipher = crypto_ablkcipher_reqtfm(req); in ablkcipher_encrypt_done() local [all …]
|
/linux-4.4.14/drivers/crypto/marvell/ |
D | cipher.c | 475 .ablkcipher = { 527 .ablkcipher = { 597 .ablkcipher = { 653 .ablkcipher = { 737 .ablkcipher = { 788 .ablkcipher = {
|
/linux-4.4.14/drivers/crypto/ux500/cryp/ |
D | cryp_core.c | 1123 .ablkcipher = { 1148 .ablkcipher = { 1173 .ablkcipher = { 1199 .ablkcipher = { 1225 .ablkcipher = { 1251 .ablkcipher = { 1276 .ablkcipher = { 1301 .ablkcipher = { 1326 .ablkcipher = { 1351 .ablkcipher = {
|
/linux-4.4.14/include/linux/ |
D | crypto.h | 361 #define cra_ablkcipher cra_u.ablkcipher 459 struct ablkcipher_alg ablkcipher; member 543 #define crt_ablkcipher crt_u.ablkcipher 554 struct ablkcipher_tfm ablkcipher; member
|
/linux-4.4.14/drivers/crypto/qat/qat_common/ |
D | qat_algs.c | 1217 .ablkcipher = { 1239 .ablkcipher = { 1261 .ablkcipher = {
|
/linux-4.4.14/drivers/crypto/amcc/ |
D | crypto4xx_core.c | 1123 .ablkcipher = {
|