Lines Matching defs:sha512ctx
202 isc_sha512_t *sha512ctx;
204 sha512ctx = isc_mem_get(dctx->mctx,
206 if (sha512ctx == NULL)
208 isc_sha512_init(sha512ctx);
209 dctx->ctxdata.sha512ctx = sha512ctx;
278 isc_sha512_t *sha512ctx = dctx->ctxdata.sha512ctx;
280 if (sha512ctx != NULL) {
281 isc_sha512_invalidate(sha512ctx);
282 isc_mem_put(dctx->mctx, sha512ctx,
284 dctx->ctxdata.sha512ctx = NULL;
338 isc_sha512_t *sha512ctx = dctx->ctxdata.sha512ctx;
340 isc_sha512_update(sha512ctx, data->base, data->length);
443 isc_sha512_t *sha512ctx = dctx->ctxdata.sha512ctx;
445 isc_sha512_final(digest, sha512ctx);
578 isc_sha512_t *sha512ctx = dctx->ctxdata.sha512ctx;
580 isc_sha512_final(digest, sha512ctx);