OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SHA1_update
(Results
1 - 3
of
3
) sorted by null
/external/vboot_reference/firmware/lib/cryptolib/
sha1.c
130
void
SHA1_update
(SHA1_CTX* ctx, const uint8_t* data, uint64_t len) {
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) {
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);
sha_utility.c
40
SHA1_update
(ctx->sha1_ctx, data, len);
/external/vboot_reference/firmware/lib/cryptolib/include/
sha.h
57
void
SHA1_update
(SHA1_CTX* ctx, const uint8_t* data, uint64_t len);
Completed in 97 milliseconds