Lines Matching refs:skcipher
58 struct skcipher_alg skcipher; member
940 static int skcipher_setkey(struct crypto_skcipher *skcipher, const u8 *key, in skcipher_setkey() argument
943 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in skcipher_setkey()
945 container_of(crypto_skcipher_alg(skcipher), in skcipher_setkey()
946 struct caam_skcipher_alg, skcipher); in skcipher_setkey()
949 unsigned int ivsize = crypto_skcipher_ivsize(skcipher); in skcipher_setkey()
983 static int aes_skcipher_setkey(struct crypto_skcipher *skcipher, in aes_skcipher_setkey() argument
992 return skcipher_setkey(skcipher, key, keylen, 0); in aes_skcipher_setkey()
995 static int rfc3686_skcipher_setkey(struct crypto_skcipher *skcipher, in rfc3686_skcipher_setkey() argument
1013 return skcipher_setkey(skcipher, key, keylen, ctx1_iv_off); in rfc3686_skcipher_setkey()
1016 static int ctr_skcipher_setkey(struct crypto_skcipher *skcipher, in ctr_skcipher_setkey() argument
1033 return skcipher_setkey(skcipher, key, keylen, ctx1_iv_off); in ctr_skcipher_setkey()
1036 static int chacha20_skcipher_setkey(struct crypto_skcipher *skcipher, in chacha20_skcipher_setkey() argument
1042 return skcipher_setkey(skcipher, key, keylen, 0); in chacha20_skcipher_setkey()
1045 static int des_skcipher_setkey(struct crypto_skcipher *skcipher, in des_skcipher_setkey() argument
1048 return verify_skcipher_des_key(skcipher, key) ?: in des_skcipher_setkey()
1049 skcipher_setkey(skcipher, key, keylen, 0); in des_skcipher_setkey()
1052 static int des3_skcipher_setkey(struct crypto_skcipher *skcipher, in des3_skcipher_setkey() argument
1055 return verify_skcipher_des3_key(skcipher, key) ?: in des3_skcipher_setkey()
1056 skcipher_setkey(skcipher, key, keylen, 0); in des3_skcipher_setkey()
1059 static int xts_skcipher_setkey(struct crypto_skcipher *skcipher, const u8 *key, in xts_skcipher_setkey() argument
1062 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in xts_skcipher_setkey()
1069 err = xts_verify_key(skcipher, key, keylen); in xts_skcipher_setkey()
1111 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in skcipher_edesc_alloc() local
1115 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in skcipher_edesc_alloc()
1123 int ivsize = crypto_skcipher_ivsize(skcipher); in skcipher_edesc_alloc()
1273 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in skcipher_unmap() local
1274 int ivsize = crypto_skcipher_ivsize(skcipher); in skcipher_unmap()
1394 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in skcipher_encrypt_done() local
1395 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in skcipher_encrypt_done()
1398 int ivsize = crypto_skcipher_ivsize(skcipher); in skcipher_encrypt_done()
1432 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in skcipher_decrypt_done() local
1433 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in skcipher_decrypt_done()
1436 int ivsize = crypto_skcipher_ivsize(skcipher); in skcipher_decrypt_done()
1467 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in xts_skcipher_ivsize() local
1468 unsigned int ivsize = crypto_skcipher_ivsize(skcipher); in xts_skcipher_ivsize()
1476 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in skcipher_encrypt() local
1477 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in skcipher_encrypt()
1526 struct crypto_skcipher *skcipher = crypto_skcipher_reqtfm(req); in skcipher_decrypt() local
1527 struct caam_ctx *ctx = crypto_skcipher_ctx(skcipher); in skcipher_decrypt()
1605 container_of(alg, typeof(*caam_alg), skcipher); in caam_cra_init_skcipher()
1671 .skcipher = {
1687 .skcipher = {
1703 .skcipher = {
1719 .skcipher = {
1737 .skcipher = {
1760 .skcipher = {
1777 .skcipher = {
3007 struct skcipher_alg *alg = &t_alg->skcipher; in caam_skcipher_alg_init()
5260 err = crypto_register_skcipher(&t_alg->skcipher); in dpaa2_caam_probe()
5263 t_alg->skcipher.base.cra_driver_name, err); in dpaa2_caam_probe()
5416 crypto_unregister_skcipher(&t_alg->skcipher); in dpaa2_caam_remove()