Lines Matching refs:H
83 ctx->H[0] = 0x6a09e667; in sha256_init_ctx()
84 ctx->H[1] = 0xbb67ae85; in sha256_init_ctx()
85 ctx->H[2] = 0x3c6ef372; in sha256_init_ctx()
86 ctx->H[3] = 0xa54ff53a; in sha256_init_ctx()
87 ctx->H[4] = 0x510e527f; in sha256_init_ctx()
88 ctx->H[5] = 0x9b05688c; in sha256_init_ctx()
89 ctx->H[6] = 0x1f83d9ab; in sha256_init_ctx()
90 ctx->H[7] = 0x5be0cd19; in sha256_init_ctx()
125 ((uint32_t *) resbuf)[i] = SWAP(ctx->H[i]); in sha256_finish_ctx()
211 uint32_t a = ctx->H[0]; in sha256_process_block()
212 uint32_t b = ctx->H[1]; in sha256_process_block()
213 uint32_t c = ctx->H[2]; in sha256_process_block()
214 uint32_t d = ctx->H[3]; in sha256_process_block()
215 uint32_t e = ctx->H[4]; in sha256_process_block()
216 uint32_t f = ctx->H[5]; in sha256_process_block()
217 uint32_t g = ctx->H[6]; in sha256_process_block()
218 uint32_t h = ctx->H[7]; in sha256_process_block()
288 ctx->H[0] = a; in sha256_process_block()
289 ctx->H[1] = b; in sha256_process_block()
290 ctx->H[2] = c; in sha256_process_block()
291 ctx->H[3] = d; in sha256_process_block()
292 ctx->H[4] = e; in sha256_process_block()
293 ctx->H[5] = f; in sha256_process_block()
294 ctx->H[6] = g; in sha256_process_block()
295 ctx->H[7] = h; in sha256_process_block()