Lines Matching full:hash
2 * SHA-256 hash implementation and interface functions
29 * @mac: Buffer for the hash (32 bytes)
100 * @mac: Buffer for the hash (20 bytes)
127 u8 hash[SHA256_MAC_LEN];
148 hmac_sha256_vector(key, key_len, 3, addr, len, hash);
149 memcpy(&buf[pos], hash, plen);
172 * sha256_vector - SHA256 hash for data vector
176 * @mac: Buffer for the hash
273 /* Initialize the hash state */
289 Process a block of memory though the hash
290 @param md The hash state
291 @param in The data to hash
331 Terminate the hash to get the digest
332 @param md The hash state
333 @param out [out] The destination of the hash (32 bytes)