Searched defs:SHA1_update (Results 1 - 1 of 1) sorted by relevance

/external/vboot_reference/firmware/lib/cryptolib/
H A Dsha1.c130 void SHA1_update(SHA1_CTX* ctx, const uint8_t* data, uint64_t len) { function
158 SHA1_update(ctx, (uint8_t*)"\x80", 1);
160 SHA1_update(ctx, (uint8_t*)"\0", 1);
164 SHA1_update(ctx, &tmp, 1);
228 void SHA1_update(SHA1_CTX *ctx, const uint8_t *data, uint64_t len) { function
247 SHA1_update(ctx, (uint8_t*)"\x80", 1);
249 SHA1_update(ctx, (uint8_t*)"\0", 1);
253 SHA1_update(ctx, &tmp, 1);
283 SHA1_update(&ctx, data, len);

Completed in 134 milliseconds