Home
last modified time | relevance | path

Searched refs:VB_SHA512_CTX (Results 1 – 3 of 3) sorted by relevance

/external/vboot_reference/firmware/lib/cryptolib/include/
Dsha.h53 } VB_SHA512_CTX; typedef
64 void SHA512_init(VB_SHA512_CTX* ctx);
65 void SHA512_update(VB_SHA512_CTX* ctx, const uint8_t* data, uint32_t len);
66 uint8_t* SHA512_final(VB_SHA512_CTX* ctx);
99 VB_SHA512_CTX* sha512_ctx;
/external/vboot_reference/firmware/lib/cryptolib/
Dsha512.c154 void SHA512_init(VB_SHA512_CTX *ctx) { in SHA512_init()
172 static void SHA512_transform(VB_SHA512_CTX* ctx, const uint8_t* message, in SHA512_transform()
266 void SHA512_update(VB_SHA512_CTX* ctx, const uint8_t* data, in SHA512_update()
299 uint8_t* SHA512_final(VB_SHA512_CTX* ctx) in SHA512_final()
344 VB_SHA512_CTX ctx; in internal_SHA512()
Dsha_utility.c29 ctx->sha512_ctx = (VB_SHA512_CTX*) VbExMalloc(sizeof(VB_SHA512_CTX)); in DigestInit()