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

  /external/wpa_supplicant_8/src/crypto/
sha512_i.h 12 #define SHA512_BLOCK_SIZE 128
17 u8 buf[SHA512_BLOCK_SIZE];
sha384_i.h 14 #define SHA384_BLOCK_SIZE SHA512_BLOCK_SIZE
sha512-internal.c 189 if (md->curlen == 0 && inlen >= SHA512_BLOCK_SIZE) {
192 md->length += SHA512_BLOCK_SIZE * 8;
193 in += SHA512_BLOCK_SIZE;
194 inlen -= SHA512_BLOCK_SIZE;
196 n = MIN(inlen, (SHA512_BLOCK_SIZE - md->curlen));
201 if (md->curlen == SHA512_BLOCK_SIZE) {
204 md->length += 8 * SHA512_BLOCK_SIZE;
  /external/tpm2/
CpriHashData.c 28 {TPM_ALG_SHA512, SHA512_DIGEST_SIZE, SHA512_BLOCK_SIZE,
Implementation.h 502 #define SHA512_BLOCK_SIZE 128
    [all...]
  /external/mmc-utils/3rdparty/hmac_sha/
sha2.h 47 #define SHA512_BLOCK_SIZE (1024 / 8)
48 #define SHA384_BLOCK_SIZE SHA512_BLOCK_SIZE
72 unsigned char block[2 * SHA512_BLOCK_SIZE];
hmac_sha2.h 91 unsigned char block_ipad[SHA512_BLOCK_SIZE];
92 unsigned char block_opad[SHA512_BLOCK_SIZE];
hmac_sha2.c 312 if (key_size == SHA512_BLOCK_SIZE) {
314 num = SHA512_BLOCK_SIZE;
316 if (key_size > SHA512_BLOCK_SIZE){
320 } else { /* key_size > SHA512_BLOCK_SIZE */
324 fill = SHA512_BLOCK_SIZE - num;
336 sha512_update(&ctx->ctx_inside, ctx->block_ipad, SHA512_BLOCK_SIZE);
340 SHA512_BLOCK_SIZE);
sha2.c 562 tmp_len = SHA512_BLOCK_SIZE - ctx->len;
567 if (ctx->len + len < SHA512_BLOCK_SIZE) {
573 block_nb = new_len / SHA512_BLOCK_SIZE;
580 rem_len = new_len % SHA512_BLOCK_SIZE;
599 block_nb = 1 + ((SHA512_BLOCK_SIZE - 17)
600 < (ctx->len % SHA512_BLOCK_SIZE));
    [all...]
  /external/vboot_reference/firmware/lib/cryptolib/include/
sha.h 24 #define SHA512_BLOCK_SIZE 128
51 uint8_t block[2 * SHA512_BLOCK_SIZE];
  /external/vboot_reference/firmware/lib/cryptolib/
sha512.c 272 tmp_len = SHA512_BLOCK_SIZE - ctx->len;
277 if (ctx->len + len < SHA512_BLOCK_SIZE) {
283 block_nb = new_len / SHA512_BLOCK_SIZE;
290 rem_len = new_len % SHA512_BLOCK_SIZE;
309 block_nb = 1 + ((SHA512_BLOCK_SIZE - 17)
310 < (ctx->len % SHA512_BLOCK_SIZE));
padding.c 214 SHA512_BLOCK_SIZE,
217 SHA512_BLOCK_SIZE,
220 SHA512_BLOCK_SIZE,
223 SHA512_BLOCK_SIZE,
  /device/linaro/bootloader/edk2/MdePkg/Include/IndustryStandard/
Tpm20.h 43 #define SHA512_BLOCK_SIZE 128
    [all...]
  /system/tpm/trunks/
tpm_generated.h 85 #if !defined(SHA512_BLOCK_SIZE)
86 #define SHA512_BLOCK_SIZE 128
    [all...]

Completed in 1105 milliseconds