Lines Matching +full:one +full:- +full:shot
1 /* SPDX-License-Identifier: GPL-2.0 */
37 * struct md5_ctx - Context for hashing a message with MD5
49 * md5_init() - Initialize an MD5 context for a new message
59 * md5_update() - Update an MD5 context with message data
71 * md5_final() - Finish computing an MD5 message digest
82 * md5() - Compute MD5 message digest in one shot
92 * struct hmac_md5_key - Prepared key for HMAC-MD5
102 * struct hmac_md5_ctx - Context for computing HMAC-MD5 of a message
112 * hmac_md5_preparekey() - Prepare a key for HMAC-MD5
114 * @raw_key: the raw HMAC-MD5 key
126 * hmac_md5_init() - Initialize an HMAC-MD5 context for a new message
137 * hmac_md5_init_usingrawkey() - Initialize an HMAC-MD5 context for a new
140 * @raw_key: the raw HMAC-MD5 key
152 * hmac_md5_update() - Update an HMAC-MD5 context with message data
164 md5_update(&ctx->hash_ctx, data, data_len); in hmac_md5_update()
168 * hmac_md5_final() - Finish computing an HMAC-MD5 value
170 * @out: (output) the resulting HMAC-MD5 value
179 * hmac_md5() - Compute HMAC-MD5 in one shot, using a prepared key
183 * @out: (output) the resulting HMAC-MD5 value
193 * hmac_md5_usingrawkey() - Compute HMAC-MD5 in one shot, using a raw key
194 * @raw_key: the raw HMAC-MD5 key
198 * @out: (output) the resulting HMAC-MD5 value