• Home
  • Raw
  • Download

Lines Matching refs:ctx_inside

77     sha224_init(&ctx->ctx_inside);  in hmac_sha224_init()
78 sha224_update(&ctx->ctx_inside, ctx->block_ipad, SHA224_BLOCK_SIZE); in hmac_sha224_init()
85 memcpy(&ctx->ctx_inside_reinit, &ctx->ctx_inside, in hmac_sha224_init()
93 memcpy(&ctx->ctx_inside, &ctx->ctx_inside_reinit, in hmac_sha224_reinit()
102 sha224_update(&ctx->ctx_inside, message, message_len); in hmac_sha224_update()
111 sha224_final(&ctx->ctx_inside, digest_inside); in hmac_sha224_final()
163 sha256_init(&ctx->ctx_inside); in hmac_sha256_init()
164 sha256_update(&ctx->ctx_inside, ctx->block_ipad, SHA256_BLOCK_SIZE); in hmac_sha256_init()
171 memcpy(&ctx->ctx_inside_reinit, &ctx->ctx_inside, in hmac_sha256_init()
179 memcpy(&ctx->ctx_inside, &ctx->ctx_inside_reinit, in hmac_sha256_reinit()
188 sha256_update(&ctx->ctx_inside, message, message_len); in hmac_sha256_update()
197 sha256_final(&ctx->ctx_inside, digest_inside); in hmac_sha256_final()
249 sha384_init(&ctx->ctx_inside); in hmac_sha384_init()
250 sha384_update(&ctx->ctx_inside, ctx->block_ipad, SHA384_BLOCK_SIZE); in hmac_sha384_init()
257 memcpy(&ctx->ctx_inside_reinit, &ctx->ctx_inside, in hmac_sha384_init()
265 memcpy(&ctx->ctx_inside, &ctx->ctx_inside_reinit, in hmac_sha384_reinit()
274 sha384_update(&ctx->ctx_inside, message, message_len); in hmac_sha384_update()
283 sha384_final(&ctx->ctx_inside, digest_inside); in hmac_sha384_final()
335 sha512_init(&ctx->ctx_inside); in hmac_sha512_init()
336 sha512_update(&ctx->ctx_inside, ctx->block_ipad, SHA512_BLOCK_SIZE); in hmac_sha512_init()
343 memcpy(&ctx->ctx_inside_reinit, &ctx->ctx_inside, in hmac_sha512_init()
351 memcpy(&ctx->ctx_inside, &ctx->ctx_inside_reinit, in hmac_sha512_reinit()
360 sha512_update(&ctx->ctx_inside, message, message_len); in hmac_sha512_update()
369 sha512_final(&ctx->ctx_inside, digest_inside); in hmac_sha512_final()