Lines Matching refs:algs

306 int fips140_crypto_register_algs(struct crypto_alg *algs, int count)  in fips140_crypto_register_algs()  argument
312 err = fips140_prepare_alg(&algs[i]); in fips140_crypto_register_algs()
317 return crypto_register_algs(algs, count); in fips140_crypto_register_algs()
320 int fips140_crypto_register_aeads(struct aead_alg *algs, int count) in fips140_crypto_register_aeads() argument
326 err = fips140_prepare_aead_alg(&algs[i]); in fips140_crypto_register_aeads()
331 return crypto_register_aeads(algs, count); in fips140_crypto_register_aeads()
334 int fips140_crypto_register_ahashes(struct ahash_alg *algs, int count) in fips140_crypto_register_ahashes() argument
340 err = fips140_prepare_ahash_alg(&algs[i]); in fips140_crypto_register_ahashes()
345 return crypto_register_ahashes(algs, count); in fips140_crypto_register_ahashes()
348 int fips140_crypto_register_rngs(struct rng_alg *algs, int count) in fips140_crypto_register_rngs() argument
354 err = fips140_prepare_rng_alg(&algs[i]); in fips140_crypto_register_rngs()
359 return crypto_register_rngs(algs, count); in fips140_crypto_register_rngs()
362 int fips140_crypto_register_shashes(struct shash_alg *algs, int count) in fips140_crypto_register_shashes() argument
368 err = fips140_prepare_shash_alg(&algs[i]); in fips140_crypto_register_shashes()
373 return crypto_register_shashes(algs, count); in fips140_crypto_register_shashes()
376 int fips140_crypto_register_skciphers(struct skcipher_alg *algs, int count) in fips140_crypto_register_skciphers() argument
382 err = fips140_prepare_skcipher_alg(&algs[i]); in fips140_crypto_register_skciphers()
387 return crypto_register_skciphers(algs, count); in fips140_crypto_register_skciphers()