HomeSort by relevance Sort by last modified time
    Searched refs:VB_SHA256_CTX (Results 1 - 3 of 3) sorted by null

  /external/vboot_reference/firmware/lib/cryptolib/include/
sha.h 45 } VB_SHA256_CTX;
60 void SHA256_init(VB_SHA256_CTX* ctx);
61 void SHA256_update(VB_SHA256_CTX* ctx, const uint8_t* data, uint32_t len);
62 uint8_t* SHA256_final(VB_SHA256_CTX* ctx);
98 VB_SHA256_CTX* sha256_ctx;
  /external/vboot_reference/firmware/lib/cryptolib/
sha_utility.c 24 ctx->sha256_ctx = (VB_SHA256_CTX*) VbExMalloc(sizeof(VB_SHA256_CTX));
sha256.c 111 void SHA256_init(VB_SHA256_CTX *ctx) {
129 static void SHA256_transform(VB_SHA256_CTX* ctx, const uint8_t* message,
245 void SHA256_update(VB_SHA256_CTX* ctx, const uint8_t* data, uint32_t len) {
277 uint8_t* SHA256_final(VB_SHA256_CTX* ctx) {
320 VB_SHA256_CTX ctx;

Completed in 453 milliseconds