Searched refs:ecb (Results 1 - 72 of 72) sorted by relevance

/linux-4.1.27/drivers/crypto/nx/
H A DMakefile5 nx-aes-ecb.o \
H A Dnx-aes-ecb.c131 .cra_name = "ecb(aes)",
132 .cra_driver_name = "ecb-aes-nx",
/linux-4.1.27/drivers/scsi/
H A Daha1740.c77 struct ecb ecb[AHA1740_ECBS]; member in struct:aha1740_hostdata
88 static inline struct ecb *ecb_dma_to_cpu (struct Scsi_Host *host, ecb_dma_to_cpu()
96 return (struct ecb *)(((char *) hdata->ecb) + (unsigned int) offset); ecb_dma_to_cpu()
104 offset = (char *) cpu - (char *) hdata->ecb; ecb_cpu_to_dma()
213 struct ecb *ecbptr; aha1740_intr_handle()
279 memset(ecbptr,0,sizeof(struct ecb)); aha1740_intr_handle()
346 /* locate an available ecb */ aha1740_queuecommand_lck()
352 if (!host->ecb[ecbno].cmdw) aha1740_queuecommand_lck()
359 if (host->ecb[ecbno].cmdw) aha1740_queuecommand_lck()
360 panic("Unable to find empty ecb for aha1740.\n"); aha1740_queuecommand_lck()
362 host->ecb[ecbno].cmdw = AHA1740CMD_INIT; /* SCSI Initiator Command aha1740_queuecommand_lck()
372 host->ecb[ecbno].cdblen = SCpnt->cmd_len; /* SCSI Command aha1740_queuecommand_lck()
382 memcpy(host->ecb[ecbno].cdb, cmd, SCpnt->cmd_len); aha1740_queuecommand_lck()
402 host->ecb[ecbno].sg = 1; /* SCSI Initiator Command aha1740_queuecommand_lck()
409 host->ecb[ecbno].datalen = nseg * sizeof(struct aha1740_chain);
410 host->ecb[ecbno].dataptr = sg_dma;
417 host->ecb[ecbno].datalen = 0;
418 host->ecb[ecbno].dataptr = 0;
420 host->ecb[ecbno].lun = SCpnt->device->lun;
421 host->ecb[ecbno].ses = 1; /* Suppress underrun errors */
422 host->ecb[ecbno].dir = direction;
423 host->ecb[ecbno].ars = 1; /* Yes, get the sense on an error */
424 host->ecb[ecbno].senselen = 12;
425 host->ecb[ecbno].senseptr = ecb_cpu_to_dma (SCpnt->device->host,
426 host->ecb[ecbno].sense);
427 host->ecb[ecbno].statusptr = ecb_cpu_to_dma (SCpnt->device->host,
428 host->ecb[ecbno].status);
429 host->ecb[ecbno].done = done;
430 host->ecb[ecbno].SCpnt = SCpnt;
435 for (i = 0; i < sizeof(host->ecb[ecbno]) - 10; i++)
436 printk("%02x ", ((unchar *)&host->ecb[ecbno])[i]);
468 outl (ecb_cpu_to_dma (SCpnt->device->host, host->ecb + ecbno),
591 host->ecb_dma_addr = dma_map_single (&edev->dev, host->ecb, aha1740_probe()
592 sizeof (host->ecb), aha1740_probe()
621 sizeof (host->ecb), DMA_BIDIRECTIONAL); aha1740_probe()
639 sizeof (host->ecb), DMA_BIDIRECTIONAL); aha1740_remove()
H A Daha1740.h104 struct ecb { /* Enhanced Control Block 6.1 */ struct
/linux-4.1.27/crypto/
H A Dtcrypt.c1258 ret += tcrypt_test("ecb(des)"); do_test()
1264 ret += tcrypt_test("ecb(des3_ede)"); do_test()
1278 ret += tcrypt_test("ecb(blowfish)"); do_test()
1284 ret += tcrypt_test("ecb(twofish)"); do_test()
1292 ret += tcrypt_test("ecb(serpent)"); do_test()
1300 ret += tcrypt_test("ecb(aes)"); do_test()
1321 ret += tcrypt_test("ecb(cast5)"); do_test()
1327 ret += tcrypt_test("ecb(cast6)"); do_test()
1335 ret += tcrypt_test("ecb(arc4)"); do_test()
1347 ret += tcrypt_test("ecb(tea)"); do_test()
1351 ret += tcrypt_test("ecb(xtea)"); do_test()
1355 ret += tcrypt_test("ecb(khazad)"); do_test()
1371 ret += tcrypt_test("ecb(tnepres)"); do_test()
1375 ret += tcrypt_test("ecb(anubis)"); do_test()
1392 ret += tcrypt_test("ecb(xeta)"); do_test()
1400 ret += tcrypt_test("ecb(camellia)"); do_test()
1448 ret += tcrypt_test("ecb(seed)"); do_test()
1536 ret += tcrypt_test("authenc(hmac(md5),ecb(cipher_null))"); do_test()
1540 ret += tcrypt_test("authenc(hmac(sha1),ecb(cipher_null))"); do_test()
1573 test_cipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, do_test()
1575 test_cipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0, do_test()
1596 test_cipher_speed("ecb(des3_ede)", ENCRYPT, sec, do_test()
1599 test_cipher_speed("ecb(des3_ede)", DECRYPT, sec, do_test()
1617 test_cipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0, do_test()
1619 test_cipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0, do_test()
1640 test_cipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0, do_test()
1642 test_cipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0, do_test()
1655 test_cipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0, do_test()
1657 test_cipher_speed("ecb(des)", DECRYPT, sec, NULL, 0, do_test()
1666 test_cipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0, do_test()
1668 test_cipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0, do_test()
1694 test_cipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0, do_test()
1696 test_cipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0, do_test()
1717 test_cipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, do_test()
1722 test_cipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0, do_test()
1724 test_cipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0, do_test()
1737 test_cipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0, do_test()
1739 test_cipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0, do_test()
1935 test_acipher_speed("ecb(aes)", ENCRYPT, sec, NULL, 0, do_test()
1937 test_acipher_speed("ecb(aes)", DECRYPT, sec, NULL, 0, do_test()
1970 test_acipher_speed("ecb(des3_ede)", ENCRYPT, sec, do_test()
1973 test_acipher_speed("ecb(des3_ede)", DECRYPT, sec, do_test()
1997 test_acipher_speed("ecb(des)", ENCRYPT, sec, NULL, 0, do_test()
1999 test_acipher_speed("ecb(des)", DECRYPT, sec, NULL, 0, do_test()
2016 test_acipher_speed("ecb(serpent)", ENCRYPT, sec, NULL, 0, do_test()
2018 test_acipher_speed("ecb(serpent)", DECRYPT, sec, NULL, 0, do_test()
2039 test_acipher_speed("ecb(twofish)", ENCRYPT, sec, NULL, 0, do_test()
2041 test_acipher_speed("ecb(twofish)", DECRYPT, sec, NULL, 0, do_test()
2062 test_acipher_speed("ecb(arc4)", ENCRYPT, sec, NULL, 0, do_test()
2067 test_acipher_speed("ecb(cast5)", ENCRYPT, sec, NULL, 0, do_test()
2069 test_acipher_speed("ecb(cast5)", DECRYPT, sec, NULL, 0, do_test()
2082 test_acipher_speed("ecb(cast6)", ENCRYPT, sec, NULL, 0, do_test()
2084 test_acipher_speed("ecb(cast6)", DECRYPT, sec, NULL, 0, do_test()
2105 test_acipher_speed("ecb(camellia)", ENCRYPT, sec, NULL, 0, do_test()
2107 test_acipher_speed("ecb(camellia)", DECRYPT, sec, NULL, 0, do_test()
2128 test_acipher_speed("ecb(blowfish)", ENCRYPT, sec, NULL, 0, do_test()
2130 test_acipher_speed("ecb(blowfish)", DECRYPT, sec, NULL, 0, do_test()
H A Dtestmgr.c1872 .alg = "__driver-ecb-aes-aesni",
1876 .alg = "__driver-ecb-camellia-aesni",
1879 .alg = "__driver-ecb-camellia-aesni-avx2",
1882 .alg = "__driver-ecb-cast5-avx",
1885 .alg = "__driver-ecb-cast6-avx",
1888 .alg = "__driver-ecb-serpent-avx",
1891 .alg = "__driver-ecb-serpent-avx2",
1894 .alg = "__driver-ecb-serpent-sse2",
1897 .alg = "__driver-ecb-twofish-avx",
1914 .alg = "authenc(hmac(md5),ecb(cipher_null))",
1972 .alg = "authenc(hmac(sha1),ecb(cipher_null))",
2354 .alg = "cryptd(__driver-ecb-aes-aesni)",
2358 .alg = "cryptd(__driver-ecb-camellia-aesni)",
2361 .alg = "cryptd(__driver-ecb-camellia-aesni-avx2)",
2364 .alg = "cryptd(__driver-ecb-cast5-avx)",
2367 .alg = "cryptd(__driver-ecb-cast6-avx)",
2370 .alg = "cryptd(__driver-ecb-serpent-avx)",
2373 .alg = "cryptd(__driver-ecb-serpent-avx2)",
2376 .alg = "cryptd(__driver-ecb-serpent-sse2)",
2379 .alg = "cryptd(__driver-ecb-twofish-avx)",
2706 .alg = "ecb(__aes-aesni)",
2710 .alg = "ecb(aes)",
2726 .alg = "ecb(anubis)",
2741 .alg = "ecb(arc4)",
2756 .alg = "ecb(blowfish)",
2771 .alg = "ecb(camellia)",
2786 .alg = "ecb(cast5)",
2801 .alg = "ecb(cast6)",
2816 .alg = "ecb(cipher_null)",
2819 .alg = "ecb(des)",
2835 .alg = "ecb(des3_ede)",
2851 .alg = "ecb(fcrypt)",
2866 .alg = "ecb(khazad)",
2881 .alg = "ecb(seed)",
2896 .alg = "ecb(serpent)",
2911 .alg = "ecb(tea)",
2926 .alg = "ecb(tnepres)",
2941 .alg = "ecb(twofish)",
2956 .alg = "ecb(xeta)",
2971 .alg = "ecb(xtea)",
3670 if (snprintf(nalg, sizeof(nalg), "ecb(%s)", alg) >= alg_test()
H A Decb.c133 inst = crypto_alloc_instance("ecb", alg); crypto_ecb_alloc()
167 .name = "ecb",
188 MODULE_ALIAS_CRYPTO("ecb");
H A Dcrypto_null.c122 .cra_name = "ecb(cipher_null)",
123 .cra_driver_name = "ecb-cipher_null",
H A DMakefile52 obj-$(CONFIG_CRYPTO_ECB) += ecb.o
H A Darc4.c134 .cra_name = "ecb(arc4)",
H A Dlrw.c6 * Based on ecb.c
H A Dxts.c8 * Based om ecb.c
H A Dgcm.c1315 err = crypto_grab_skcipher(&ctx->null, "ecb(cipher_null)", 0, crypto_rfc4543_alloc()
/linux-4.1.27/arch/x86/crypto/
H A Dcamellia_aesni_avx_glue.c74 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_ecb_enc_16way) }
77 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_enc_blk_2way) }
80 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_enc_blk) }
119 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_ecb_dec_16way) }
122 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_dec_blk_2way) }
125 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_dec_blk) }
336 .cra_driver_name = "__driver-ecb-camellia-aesni",
441 .cra_name = "ecb(camellia)",
442 .cra_driver_name = "ecb-camellia-aesni",
H A Dserpent_avx2_glue.c50 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_ecb_enc_16way) }
53 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_ecb_enc_8way_avx) }
56 .fn_u = { .ecb = GLUE_FUNC_CAST(__serpent_encrypt) }
98 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_ecb_dec_16way) }
101 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_ecb_dec_8way_avx) }
104 .fn_u = { .ecb = GLUE_FUNC_CAST(__serpent_decrypt) }
310 .cra_driver_name = "__driver-ecb-serpent-avx2",
420 .cra_name = "ecb(serpent)",
421 .cra_driver_name = "ecb-serpent-avx2",
H A Dcamellia_aesni_avx2_glue.c52 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_ecb_enc_32way) }
55 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_ecb_enc_16way) }
58 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_enc_blk_2way) }
61 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_enc_blk) }
106 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_ecb_dec_32way) }
109 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_ecb_dec_16way) }
112 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_dec_blk_2way) }
115 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_dec_blk) }
344 .cra_driver_name = "__driver-ecb-camellia-aesni-avx2",
449 .cra_name = "ecb(camellia)",
450 .cra_driver_name = "ecb-camellia-aesni-avx2",
H A Dtwofish_glue_3way.c108 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_enc_blk_3way) }
111 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_enc_blk) }
121 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_enc_blk_ctr_3way) }
124 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_enc_blk_ctr) }
134 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_dec_blk_3way) }
137 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_dec_blk) }
336 .cra_name = "ecb(twofish)",
337 .cra_driver_name = "ecb-twofish-3way",
H A Dtwofish_avx_glue.c91 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_ecb_enc_8way) }
94 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_enc_blk_3way) }
97 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_enc_blk) }
136 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_ecb_dec_8way) }
139 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_dec_blk_3way) }
142 .fn_u = { .ecb = GLUE_FUNC_CAST(twofish_dec_blk) }
341 .cra_driver_name = "__driver-ecb-twofish-avx",
446 .cra_name = "ecb(twofish)",
447 .cra_driver_name = "ecb-twofish-avx",
H A Dserpent_sse2_glue.c10 * CBC & ECB parts based on code (crypto/cbc.c,ecb.c) by:
96 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_enc_blk_xway) }
99 .fn_u = { .ecb = GLUE_FUNC_CAST(__serpent_encrypt) }
122 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_dec_blk_xway) }
125 .fn_u = { .ecb = GLUE_FUNC_CAST(__serpent_decrypt) }
388 .cra_driver_name = "__driver-ecb-serpent-sse2",
493 .cra_name = "ecb(serpent)",
494 .cra_driver_name = "ecb-serpent-sse2",
H A Dcast6_avx_glue.c89 .fn_u = { .ecb = GLUE_FUNC_CAST(cast6_ecb_enc_8way) }
92 .fn_u = { .ecb = GLUE_FUNC_CAST(__cast6_encrypt) }
128 .fn_u = { .ecb = GLUE_FUNC_CAST(cast6_ecb_dec_8way) }
131 .fn_u = { .ecb = GLUE_FUNC_CAST(__cast6_decrypt) }
373 .cra_driver_name = "__driver-ecb-cast6-avx",
478 .cra_name = "ecb(cast6)",
479 .cra_driver_name = "ecb-cast6-avx",
H A Dserpent_avx_glue.c102 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_ecb_enc_8way_avx) }
105 .fn_u = { .ecb = GLUE_FUNC_CAST(__serpent_encrypt) }
141 .fn_u = { .ecb = GLUE_FUNC_CAST(serpent_ecb_dec_8way_avx) }
144 .fn_u = { .ecb = GLUE_FUNC_CAST(__serpent_decrypt) }
379 .cra_driver_name = "__driver-ecb-serpent-avx",
484 .cra_name = "ecb(serpent)",
485 .cra_driver_name = "ecb-serpent-avx",
H A Dblowfish_glue.c6 * CBC & ECB parts based on code (crypto/cbc.c,ecb.c) by:
377 .cra_name = "ecb(blowfish)",
378 .cra_driver_name = "ecb-blowfish-asm",
H A Dcast5_avx_glue.c342 .cra_driver_name = "__driver-ecb-cast5-avx",
402 .cra_name = "ecb(cast5)",
403 .cra_driver_name = "ecb-cast5-avx",
H A Ddes3_ede_glue.c6 * CBC & ECB parts based on code (crypto/cbc.c,ecb.c) by:
404 .cra_name = "ecb(des3_ede)",
405 .cra_driver_name = "ecb-des3_ede-asm",
H A Dglue_helper.c6 * CBC & ECB parts based on code (crypto/cbc.c,ecb.c) by:
60 gctx->funcs[i].fn_u.ecb(ctx, wdst, __glue_ecb_crypt_128bit()
H A Dcamellia_glue.c1330 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_enc_blk_2way) }
1333 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_enc_blk) }
1356 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_dec_blk_2way) }
1359 .fn_u = { .ecb = GLUE_FUNC_CAST(camellia_dec_blk) }
1580 .cra_name = "ecb(camellia)",
1581 .cra_driver_name = "ecb-camellia-asm",
H A Daesni-intel_glue.c535 return ablk_init_common(tfm, "__driver-ecb-aes-aesni"); ablk_ecb_init()
1284 .cra_driver_name = "__driver-ecb-aes-aesni",
1325 .cra_name = "ecb(aes)",
1326 .cra_driver_name = "ecb-aes-aesni",
/linux-4.1.27/drivers/crypto/qce/
H A Dablkcipher.c274 .name = "ecb(aes)",
275 .drv_name = "ecb-aes-qce",
310 .name = "ecb(des)",
311 .drv_name = "ecb-des-qce",
328 .name = "ecb(des3_ede)",
329 .drv_name = "ecb-3des-qce",
/linux-4.1.27/drivers/crypto/
H A Dmxs-dcp.c94 unsigned int ecb:1; member in struct:dcp_aes_req_ctx
227 if (rctx->ecb) mxs_dcp_run_aes()
280 if (!rctx->ecb) { mxs_dcp_aes_block_crypt()
395 static int mxs_dcp_aes_enqueue(struct ablkcipher_request *req, int enc, int ecb) mxs_dcp_aes_enqueue() argument
407 rctx->ecb = ecb; mxs_dcp_aes_enqueue()
781 .cra_name = "ecb(aes)",
782 .cra_driver_name = "ecb-aes-dcp",
H A Dn2_core.c1123 { .name = "ecb(arc4)",
1124 .drv_name = "ecb-arc4",
1138 { .name = "ecb(des)",
1139 .drv_name = "ecb-des",
1180 { .name = "ecb(des3_ede)",
1181 .drv_name = "ecb-3des",
1221 { .name = "ecb(aes)",
1222 .drv_name = "ecb-aes",
H A Dpicoxcell_crypto.c1333 .cra_name = "ecb(aes)",
1334 .cra_driver_name = "ecb-aes-picoxcell",
1386 .cra_name = "ecb(des)",
1387 .cra_driver_name = "ecb-des-picoxcell",
1439 .cra_name = "ecb(des3_ede)",
1440 .cra_driver_name = "ecb-des3-ede-picoxcell",
H A Dgeode-aes.c477 .cra_name = "ecb(aes)",
478 .cra_driver_name = "ecb-aes-geode",
H A Dpadlock-aes.c401 .cra_name = "ecb(aes)",
402 .cra_driver_name = "ecb-aes-padlock",
H A Ds5p-sss.c597 .cra_name = "ecb(aes)",
598 .cra_driver_name = "ecb-aes-s5p",
H A Datmel-tdes.c921 .cra_name = "ecb(des)",
922 .cra_driver_name = "atmel-ecb-des",
1067 .cra_name = "ecb(des3_ede)",
1068 .cra_driver_name = "atmel-ecb-tdes",
H A Domap-des.c781 .cra_name = "ecb(des)",
782 .cra_driver_name = "ecb-des-omap",
826 .cra_name = "ecb(des3_ede)",
827 .cra_driver_name = "ecb-des3-omap",
H A Dixp4xx_crypto.c1229 .cra_name = "ecb(des)",
1255 .cra_name = "ecb(des3_ede)",
1281 .cra_name = "ecb(aes)",
H A Dmv_cesa.c927 .cra_name = "ecb(aes)",
928 .cra_driver_name = "mv-ecb-aes",
1101 "Could not register aes-ecb driver\n"); mv_probe()
H A Dhifn_795x.c2371 .name = "ecb(des3_ede)", .drv_name = "ecb-3des", .bsize = 8,
2416 .name = "ecb(des)", .drv_name = "ecb-des", .bsize = 8,
2430 .name = "ecb(aes)", .drv_name = "ecb-aes", .bsize = 16,
H A Datmel-aes.c961 .cra_name = "ecb(aes)",
962 .cra_driver_name = "atmel-ecb-aes",
H A Domap-aes.c834 .cra_name = "ecb(aes)",
835 .cra_driver_name = "ecb-aes-omap",
H A Dsahara.c1274 .cra_name = "ecb(aes)",
1275 .cra_driver_name = "sahara-ecb-aes",
/linux-4.1.27/arch/sparc/crypto/
H A Ddes_glue.c400 .cra_name = "ecb(des)",
401 .cra_driver_name = "ecb-des-sparc64",
457 .cra_name = "ecb(des3_ede)",
458 .cra_driver_name = "ecb-des3_ede-sparc64",
H A Dcamellia_glue.c245 .cra_name = "ecb(camellia)",
246 .cra_driver_name = "ecb-camellia-sparc64",
H A Daes_glue.c404 .cra_name = "ecb(aes)",
405 .cra_driver_name = "ecb-aes-sparc64",
/linux-4.1.27/arch/x86/include/asm/crypto/
H A Dglue_helper.h28 common_glue_func_t ecb; member in union:common_glue_func_entry::__anon3026
/linux-4.1.27/arch/s390/crypto/
H A Ddes_s390.c166 .cra_name = "ecb(des)",
167 .cra_driver_name = "ecb-des-s390",
312 .cra_name = "ecb(des3_ede)",
313 .cra_driver_name = "ecb-des3_ede-s390",
H A Daes_s390.c392 .cra_name = "ecb(aes)",
393 .cra_driver_name = "ecb-aes-s390",
/linux-4.1.27/arch/arm64/crypto/
H A Daes-glue.c47 MODULE_ALIAS_CRYPTO("ecb(aes)");
285 .cra_driver_name = "__driver-ecb-aes-" MODE,
360 .cra_name = "ecb(aes)",
361 .cra_driver_name = "ecb-aes-" MODE,
/linux-4.1.27/fs/ext4/
H A Dcrypto_key.c47 struct crypto_ablkcipher *tfm = crypto_alloc_ablkcipher("ecb(aes)", 0, ext4_derive_key_aes()
/linux-4.1.27/drivers/staging/rtl8192e/
H A Drtllib_crypt_wep.c45 priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init()
51 priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init()
H A Drtllib_crypt_tkip.c66 priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, rtllib_tkip_init()
84 priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, rtllib_tkip_init()
/linux-4.1.27/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_crypt_wep.c49 priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init()
56 priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); prism2_wep_init()
H A Dieee80211_crypt_tkip.c73 priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, ieee80211_tkip_init()
91 priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, ieee80211_tkip_init()
/linux-4.1.27/drivers/crypto/ccp/
H A Dccp-crypto-aes.c272 .name = "ecb(aes)",
273 .driver_name = "ecb-aes-ccp",
/linux-4.1.27/net/wireless/
H A Dlib80211_crypt_wep.c51 priv->tx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); lib80211_wep_init()
57 priv->rx_tfm = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); lib80211_wep_init()
H A Dlib80211_crypt_tkip.c101 priv->tx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, lib80211_tkip_init()
115 priv->rx_tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, lib80211_tkip_init()
/linux-4.1.27/arch/powerpc/crypto/
H A Daes-spe-glue.c410 .cra_name = "ecb(aes)",
411 .cra_driver_name = "ecb-ppc-spe",
508 MODULE_ALIAS_CRYPTO("ecb(aes)");
/linux-4.1.27/arch/arm/crypto/
H A Daes-ce-glue.c355 .cra_driver_name = "__driver-ecb-aes-ce",
430 .cra_name = "ecb(aes)",
431 .cra_driver_name = "ecb-aes-ce",
/linux-4.1.27/drivers/crypto/ux500/cryp/
H A Dcryp_core.c1136 .cra_name = "ecb(aes)",
1137 .cra_driver_name = "ecb-aes-ux500",
1264 .cra_name = "ecb(des)",
1265 .cra_driver_name = "ecb-des-ux500",
1289 .cra_name = "ecb(des3_ede)",
1290 .cra_driver_name = "ecb-des3_ede-ux500",
/linux-4.1.27/fs/cifs/
H A Dsmbencrypt.c79 tfm_des = crypto_alloc_blkcipher("ecb(des)", 0, CRYPTO_ALG_ASYNC); smbhash()
H A Dcifsencrypt.c799 tfm_arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); calc_seckey()
/linux-4.1.27/drivers/net/ppp/
H A Dppp_mppe.c207 state->arc4 = crypto_alloc_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC); mppe_alloc()
717 if (!(crypto_has_blkcipher("ecb(arc4)", 0, CRYPTO_ALG_ASYNC) && ppp_mppe_init()
/linux-4.1.27/arch/s390/kvm/
H A Dkvm-s390.h26 #define IS_TE_ENABLED(vcpu) ((vcpu->arch.sie_block->ecb & 0x10))
H A Dkvm-s390.c1324 vcpu->arch.sie_block->ecb = 6; kvm_arch_vcpu_setup()
1326 vcpu->arch.sie_block->ecb |= 0x10; kvm_arch_vcpu_setup()
/linux-4.1.27/net/xfrm/
H A Dxfrm_algo.c331 .name = "ecb(cipher_null)",
/linux-4.1.27/drivers/crypto/caam/
H A Dcaamalg.c3396 .name = "authenc(hmac(md5),ecb(cipher_null))",
3397 .driver_name = "authenc-hmac-md5-ecb-cipher_null-caam",
3415 .name = "authenc(hmac(sha1),ecb(cipher_null))",
3416 .driver_name = "authenc-hmac-sha1-ecb-cipher_null-caam",
3434 .name = "authenc(hmac(sha224),ecb(cipher_null))",
3435 .driver_name = "authenc-hmac-sha224-ecb-cipher_null-caam",
3454 .name = "authenc(hmac(sha256),ecb(cipher_null))",
3455 .driver_name = "authenc-hmac-sha256-ecb-cipher_null-caam",
3474 .name = "authenc(hmac(sha384),ecb(cipher_null))",
3475 .driver_name = "authenc-hmac-sha384-ecb-cipher_null-caam",
3494 .name = "authenc(hmac(sha512),ecb(cipher_null))",
3495 .driver_name = "authenc-hmac-sha512-ecb-cipher_null-caam",
/linux-4.1.27/arch/s390/include/asm/
H A Dkvm_host.h136 __u8 ecb; /* 0x0061 */ member in struct:kvm_s390_sie_block
/linux-4.1.27/net/sunrpc/auth_gss/
H A Dgss_krb5_mech.c83 .encrypt_name = "ecb(arc4)",
/linux-4.1.27/net/bluetooth/
H A Dsmp.c1368 smp->tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC); smp_chan_create()
3110 tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC); smp_add_cid()
3653 tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC); bt_selftest_smp()
/linux-4.1.27/drivers/md/
H A Ddm-crypt.c1604 if (strcmp(chainmode, "ecb") && !ivmode) { crypt_ctr_cipher()
/linux-4.1.27/fs/ecryptfs/
H A Dcrypto.c1610 "ecb"); ecryptfs_process_key_cipher()

Completed in 1100 milliseconds