Home | History | Annotate | Download | only in lib20

Lines Matching refs:digest

131 	uint8_t *digest;
146 /* Must have initialized hash digest work area */
154 /* Allocate the digest */
155 digest = vb2_workbuf_alloc(&wb, digest_size);
156 if (!digest)
159 /* Finalize the digest */
161 rv = vb2ex_hwcrypto_digest_finalize(digest, digest_size);
163 rv = vb2_digest_finalize(dc, digest, digest_size);
187 * Check digest vs. signature. Note that this destroys the signature.
190 rv = vb2_verify_digest(&key, &pre->body_signature, digest, &wb);