Lines Matching full:sha224
135 * HMAC key and message context structs, shared by HMAC-SHA224 and HMAC-SHA256.
162 * If you don't need incremental computation, consider sha224() instead.
196 * sha224() - Compute SHA-224 message digest in one shot
203 void sha224(const u8 *data, size_t len, u8 out[SHA224_DIGEST_SIZE]);
206 * struct hmac_sha224_key - Prepared key for HMAC-SHA224
214 * struct hmac_sha224_ctx - Context for computing HMAC-SHA224 of a message
222 * hmac_sha224_preparekey() - Prepare a key for HMAC-SHA224
224 * @raw_key: the raw HMAC-SHA224 key
236 * hmac_sha224_init() - Initialize an HMAC-SHA224 context for a new message
251 * hmac_sha224_init_usingrawkey() - Initialize an HMAC-SHA224 context for a new
254 * @raw_key: the raw HMAC-SHA224 key
266 * hmac_sha224_update() - Update an HMAC-SHA224 context with message data
282 * hmac_sha224_final() - Finish computing an HMAC-SHA224 value
284 * @out: (output) the resulting HMAC-SHA224 value
293 * hmac_sha224() - Compute HMAC-SHA224 in one shot, using a prepared key
297 * @out: (output) the resulting HMAC-SHA224 value
307 * hmac_sha224_usingrawkey() - Compute HMAC-SHA224 in one shot, using a raw key
308 * @raw_key: the raw HMAC-SHA224 key
312 * @out: (output) the resulting HMAC-SHA224 value