Lines Matching full:sha1
60 * If you don't need incremental computation, consider sha1() instead.
90 * sha1() - Compute SHA-1 message digest in one shot
97 void sha1(const u8 *data, size_t len, u8 out[SHA1_DIGEST_SIZE]);
100 * struct hmac_sha1_key - Prepared key for HMAC-SHA1
110 * struct hmac_sha1_ctx - Context for computing HMAC-SHA1 of a message
120 * hmac_sha1_preparekey() - Prepare a key for HMAC-SHA1
122 * @raw_key: the raw HMAC-SHA1 key
134 * hmac_sha1_init() - Initialize an HMAC-SHA1 context for a new message
145 * hmac_sha1_init_usingrawkey() - Initialize an HMAC-SHA1 context for a new
148 * @raw_key: the raw HMAC-SHA1 key
160 * hmac_sha1_update() - Update an HMAC-SHA1 context with message data
176 * hmac_sha1_final() - Finish computing an HMAC-SHA1 value
178 * @out: (output) the resulting HMAC-SHA1 value
187 * hmac_sha1() - Compute HMAC-SHA1 in one shot, using a prepared key
191 * @out: (output) the resulting HMAC-SHA1 value
201 * hmac_sha1_usingrawkey() - Compute HMAC-SHA1 in one shot, using a raw key
202 * @raw_key: the raw HMAC-SHA1 key
206 * @out: (output) the resulting HMAC-SHA1 value