Lines Matching refs:alg
139 static inline struct akcipher_alg *__crypto_akcipher_alg(struct crypto_alg *alg) in __crypto_akcipher_alg() argument
141 return container_of(alg, struct akcipher_alg, base); in __crypto_akcipher_alg()
270 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_maxsize() local
272 return alg->max_size(tfm); in crypto_akcipher_maxsize()
288 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_encrypt() local
294 ret = alg->encrypt(req); in crypto_akcipher_encrypt()
312 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_decrypt() local
318 ret = alg->decrypt(req); in crypto_akcipher_decrypt()
336 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_sign() local
341 ret = alg->sign(req); in crypto_akcipher_sign()
363 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_verify() local
368 ret = alg->verify(req); in crypto_akcipher_verify()
390 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_set_pub_key() local
392 return alg->set_pub_key(tfm, key, keylen); in crypto_akcipher_set_pub_key()
412 struct akcipher_alg *alg = crypto_akcipher_alg(tfm); in crypto_akcipher_set_priv_key() local
414 return alg->set_priv_key(tfm, key, keylen); in crypto_akcipher_set_priv_key()