Lines Matching refs:desc
36 static int crypto_sha256_init(struct shash_desc *desc) in crypto_sha256_init() argument
38 sha256_init(shash_desc_ctx(desc)); in crypto_sha256_init()
42 static int crypto_sha224_init(struct shash_desc *desc) in crypto_sha224_init() argument
44 sha224_init(shash_desc_ctx(desc)); in crypto_sha224_init()
48 int crypto_sha256_update(struct shash_desc *desc, const u8 *data, in crypto_sha256_update() argument
51 sha256_update(shash_desc_ctx(desc), data, len); in crypto_sha256_update()
56 static int crypto_sha256_final(struct shash_desc *desc, u8 *out) in crypto_sha256_final() argument
58 if (crypto_shash_digestsize(desc->tfm) == SHA224_DIGEST_SIZE) in crypto_sha256_final()
59 sha224_final(shash_desc_ctx(desc), out); in crypto_sha256_final()
61 sha256_final(shash_desc_ctx(desc), out); in crypto_sha256_final()
65 int crypto_sha256_finup(struct shash_desc *desc, const u8 *data, in crypto_sha256_finup() argument
68 sha256_update(shash_desc_ctx(desc), data, len); in crypto_sha256_finup()
69 return crypto_sha256_final(desc, hash); in crypto_sha256_finup()