Home
last modified time | relevance | path

Searched refs:SHA256_update (Results 1 – 6 of 6) sorted by relevance

/external/libconstrainedcrypto/
Dsha256.c116 SHA256_update,
136 void SHA256_update(SHA256_CTX* ctx, const void* data, int len) { in SHA256_update() function
157 SHA256_update(ctx, (uint8_t*)"\x80", 1); in SHA256_final()
159 SHA256_update(ctx, (uint8_t*)"\0", 1); in SHA256_final()
163 SHA256_update(ctx, &tmp, 1); in SHA256_final()
181 SHA256_update(&ctx, data, len); in SHA256_hash()
/external/libconstrainedcrypto/include/constrainedcrypto/
Dsha256.h40 void SHA256_update(SHA256_CTX* ctx, const void* data, int len);
/external/vboot_reference/firmware/lib/cryptolib/include/
Dsha.h61 void SHA256_update(VB_SHA256_CTX* ctx, const uint8_t* data, uint32_t len);
/external/vboot_reference/firmware/lib/cryptolib/
Dsha_utility.c44 SHA256_update(ctx->sha256_ctx, data, len); in DigestUpdate()
Dsha256.c245 void SHA256_update(VB_SHA256_CTX* ctx, const uint8_t* data, uint32_t len) { in SHA256_update() function
332 SHA256_update(&ctx, input_ptr, block_size); in internal_SHA256()
/external/python/cpython2/Modules/
Dsha256module.c481 SHA256_update(SHAobject *self, PyObject *args) in SHA256_update() function
498 {"update", (PyCFunction)SHA256_update, METH_VARARGS, SHA256_update__doc__},