Searched refs:H (Results 1 – 6 of 6) sorted by relevance
10 uint32_t a = ctx->H[0]; in __sha256_process_block()11 uint32_t b = ctx->H[1]; in __sha256_process_block()12 uint32_t c = ctx->H[2]; in __sha256_process_block()90 ctx->H[0] = a; in __sha256_process_block()91 ctx->H[1] = b; in __sha256_process_block()92 ctx->H[2] = c; in __sha256_process_block()93 ctx->H[3] = d; in __sha256_process_block()94 ctx->H[4] = e; in __sha256_process_block()95 ctx->H[5] = f; in __sha256_process_block()96 ctx->H[6] = g; in __sha256_process_block()[all …]
10 uint64_t a = ctx->H[0]; in __sha512_process_block()11 uint64_t b = ctx->H[1]; in __sha512_process_block()12 uint64_t c = ctx->H[2]; in __sha512_process_block()97 ctx->H[0] = a; in __sha512_process_block()98 ctx->H[1] = b; in __sha512_process_block()99 ctx->H[2] = c; in __sha512_process_block()100 ctx->H[3] = d; in __sha512_process_block()101 ctx->H[4] = e; in __sha512_process_block()102 ctx->H[5] = f; in __sha512_process_block()103 ctx->H[6] = g; in __sha512_process_block()[all …]
90 ctx->H[0] = 0x6a09e667; in __sha256_init_ctx()91 ctx->H[1] = 0xbb67ae85; in __sha256_init_ctx()92 ctx->H[2] = 0x3c6ef372; in __sha256_init_ctx()93 ctx->H[3] = 0xa54ff53a; in __sha256_init_ctx()94 ctx->H[4] = 0x510e527f; in __sha256_init_ctx()95 ctx->H[5] = 0x9b05688c; in __sha256_init_ctx()96 ctx->H[6] = 0x1f83d9ab; in __sha256_init_ctx()97 ctx->H[7] = 0x5be0cd19; in __sha256_init_ctx()136 ((uint32_t *) resbuf)[i] = SWAP (ctx->H[i]); in __sha256_finish_ctx()
111 ctx->H[0] = UINT64_C (0x6a09e667f3bcc908); in __sha512_init_ctx()112 ctx->H[1] = UINT64_C (0xbb67ae8584caa73b); in __sha512_init_ctx()113 ctx->H[2] = UINT64_C (0x3c6ef372fe94f82b); in __sha512_init_ctx()114 ctx->H[3] = UINT64_C (0xa54ff53a5f1d36f1); in __sha512_init_ctx()115 ctx->H[4] = UINT64_C (0x510e527fade682d1); in __sha512_init_ctx()116 ctx->H[5] = UINT64_C (0x9b05688c2b3e6c1f); in __sha512_init_ctx()117 ctx->H[6] = UINT64_C (0x1f83d9abfb41bd6b); in __sha512_init_ctx()118 ctx->H[7] = UINT64_C (0x5be0cd19137e2179); in __sha512_init_ctx()159 ((uint64_t *) resbuf)[i] = SWAP (ctx->H[i]); in __sha512_finish_ctx()
32 uint32_t H[8]; member
33 uint64_t H[8]; member
Completed in 12 milliseconds