Blame lib/isc/sha2.c

Packit Service ae04f2
/*
Packit Service ae04f2
 * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
Packit Service ae04f2
 *
Packit Service ae04f2
 * This Source Code Form is subject to the terms of the Mozilla Public
Packit Service ae04f2
 * License, v. 2.0. If a copy of the MPL was not distributed with this
Packit Service ae04f2
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service ae04f2
 *
Packit Service ae04f2
 * See the COPYRIGHT file distributed with this work for additional
Packit Service ae04f2
 * information regarding copyright ownership.
Packit Service ae04f2
 */
Packit Service ae04f2
Packit Service ae04f2
/* $Id$ */
Packit Service ae04f2
Packit Service ae04f2
/*	$FreeBSD: src/sys/crypto/sha2/sha2.c,v 1.2.2.2 2002/03/05 08:36:47 ume Exp $	*/
Packit Service ae04f2
/*	$KAME: sha2.c,v 1.8 2001/11/08 01:07:52 itojun Exp $	*/
Packit Service ae04f2
Packit Service ae04f2
/*
Packit Service ae04f2
 * sha2.c
Packit Service ae04f2
 *
Packit Service ae04f2
 * Version 1.0.0beta1
Packit Service ae04f2
 *
Packit Service ae04f2
 * Written by Aaron D. Gifford <me@aarongifford.com>
Packit Service ae04f2
 *
Packit Service ae04f2
 * Copyright 2000 Aaron D. Gifford.  All rights reserved.
Packit Service ae04f2
 *
Packit Service ae04f2
 * Redistribution and use in source and binary forms, with or without
Packit Service ae04f2
 * modification, are permitted provided that the following conditions
Packit Service ae04f2
 * are met:
Packit Service ae04f2
 * 1. Redistributions of source code must retain the above copyright
Packit Service ae04f2
 *    notice, this list of conditions and the following disclaimer.
Packit Service ae04f2
 * 2. Redistributions in binary form must reproduce the above copyright
Packit Service ae04f2
 *    notice, this list of conditions and the following disclaimer in the
Packit Service ae04f2
 *    documentation and/or other materials provided with the distribution.
Packit Service ae04f2
 * 3. Neither the name of the copyright holder nor the names of contributors
Packit Service ae04f2
 *    may be used to endorse or promote products derived from this software
Packit Service ae04f2
 *    without specific prior written permission.
Packit Service ae04f2
 *
Packit Service ae04f2
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) AND CONTRIBUTOR(S) ``AS IS'' AND
Packit Service ae04f2
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit Service ae04f2
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit Service ae04f2
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) BE LIABLE
Packit Service ae04f2
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit Service ae04f2
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
Packit Service ae04f2
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
Packit Service ae04f2
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
Packit Service ae04f2
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
Packit Service ae04f2
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
Packit Service ae04f2
 * SUCH DAMAGE.
Packit Service ae04f2
 *
Packit Service ae04f2
 */
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
#include <config.h>
Packit Service ae04f2
Packit Service ae04f2
#include <inttypes.h>
Packit Service ae04f2
Packit Service ae04f2
#include <isc/assertions.h>
Packit Service ae04f2
#include <isc/platform.h>
Packit Service ae04f2
#include <isc/safe.h>
Packit Service ae04f2
#include <isc/sha2.h>
Packit Service ae04f2
#include <isc/string.h>
Packit Service ae04f2
#include <isc/util.h>
Packit Service ae04f2
Packit Service ae04f2
#if PKCS11CRYPTO
Packit Service ae04f2
#include <pk11/internal.h>
Packit Service ae04f2
#include <pk11/pk11.h>
Packit Service ae04f2
#endif
Packit Service ae04f2
Packit Service ae04f2
#if defined(ISC_PLATFORM_OPENSSLHASH) && !defined(LIBRESSL_VERSION_NUMBER)
Packit Service ae04f2
#if OPENSSL_VERSION_NUMBER < 0x10100000L
Packit Service ae04f2
#define EVP_MD_CTX_new() &(context->_ctx)
Packit Service ae04f2
#define EVP_MD_CTX_free(ptr) EVP_MD_CTX_cleanup(ptr)
Packit Service ae04f2
#define EVP_MD_CTX_reset(c) EVP_MD_CTX_cleanup(c)
Packit Service ae04f2
#endif
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_init(isc_sha224_t *context) {
Packit Service ae04f2
	if (context == (isc_sha224_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	context->ctx = EVP_MD_CTX_new();
Packit Service ae04f2
	RUNTIME_CHECK(context->ctx != NULL);
Packit Service ae04f2
	if (EVP_DigestInit(context->ctx, EVP_sha224()) != 1) {
Packit Service ae04f2
		FATAL_ERROR(__FILE__, __LINE__, "Cannot initialize SHA224.");
Packit Service ae04f2
	}
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_invalidate(isc_sha224_t *context) {
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_update(isc_sha224_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha224_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
	REQUIRE(data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	RUNTIME_CHECK(EVP_DigestUpdate(context->ctx,
Packit Service ae04f2
				       (const void *) data, len) == 1);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_final(uint8_t digest[], isc_sha224_t *context) {
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha224_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0)
Packit Service ae04f2
		RUNTIME_CHECK(EVP_DigestFinal(context->ctx,
Packit Service ae04f2
					      digest, NULL) == 1);
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_init(isc_sha256_t *context) {
Packit Service ae04f2
	if (context == (isc_sha256_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	context->ctx = EVP_MD_CTX_new();
Packit Service ae04f2
	RUNTIME_CHECK(context->ctx != NULL);
Packit Service ae04f2
	if (EVP_DigestInit(context->ctx, EVP_sha256()) != 1) {
Packit Service ae04f2
		FATAL_ERROR(__FILE__, __LINE__, "Cannot initialize SHA256.");
Packit Service ae04f2
	}
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_invalidate(isc_sha256_t *context) {
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_update(isc_sha256_t *context, const uint8_t *data, size_t len) {
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
	REQUIRE(data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	RUNTIME_CHECK(EVP_DigestUpdate(context->ctx,
Packit Service ae04f2
				       (const void *) data, len) == 1);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_final(uint8_t digest[], isc_sha256_t *context) {
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0)
Packit Service ae04f2
		RUNTIME_CHECK(EVP_DigestFinal(context->ctx,
Packit Service ae04f2
					      digest, NULL) == 1);
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_init(isc_sha512_t *context) {
Packit Service ae04f2
	if (context == (isc_sha512_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	context->ctx = EVP_MD_CTX_new();
Packit Service ae04f2
	RUNTIME_CHECK(context->ctx != NULL);
Packit Service ae04f2
	if (EVP_DigestInit(context->ctx, EVP_sha512()) != 1) {
Packit Service ae04f2
		FATAL_ERROR(__FILE__, __LINE__, "Cannot initialize SHA512.");
Packit Service ae04f2
	}
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_invalidate(isc_sha512_t *context) {
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void isc_sha512_update(isc_sha512_t *context, const uint8_t *data, size_t len) {
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
	REQUIRE(data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	RUNTIME_CHECK(EVP_DigestUpdate(context->ctx,
Packit Service ae04f2
				       (const void *) data, len) == 1);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void isc_sha512_final(uint8_t digest[], isc_sha512_t *context) {
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0)
Packit Service ae04f2
		RUNTIME_CHECK(EVP_DigestFinal(context->ctx,
Packit Service ae04f2
					      digest, NULL) == 1);
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_init(isc_sha384_t *context) {
Packit Service ae04f2
	if (context == (isc_sha384_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	context->ctx = EVP_MD_CTX_new();
Packit Service ae04f2
	RUNTIME_CHECK(context->ctx != NULL);
Packit Service ae04f2
	if (EVP_DigestInit(context->ctx, EVP_sha384()) != 1) {
Packit Service ae04f2
		FATAL_ERROR(__FILE__, __LINE__, "Cannot initialize SHA384.");
Packit Service ae04f2
	}
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_invalidate(isc_sha384_t *context) {
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_update(isc_sha384_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
	REQUIRE(data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	RUNTIME_CHECK(EVP_DigestUpdate(context->ctx,
Packit Service ae04f2
				       (const void *) data, len) == 1);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_final(uint8_t digest[], isc_sha384_t *context) {
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha384_t *)0);
Packit Service ae04f2
	REQUIRE(context->ctx != (EVP_MD_CTX *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0)
Packit Service ae04f2
		RUNTIME_CHECK(EVP_DigestFinal(context->ctx,
Packit Service ae04f2
					      digest, NULL) == 1);
Packit Service ae04f2
	EVP_MD_CTX_free(context->ctx);
Packit Service ae04f2
	context->ctx = NULL;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#elif PKCS11CRYPTO
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_init(isc_sha224_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_MECHANISM mech = { CKM_SHA224, NULL, 0 };
Packit Service ae04f2
Packit Service ae04f2
	if (context == (isc_sha224_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	RUNTIME_CHECK(pk11_get_session(context, OP_DIGEST, true, false,
Packit Service ae04f2
				       false, NULL, 0) == ISC_R_SUCCESS);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestInit, (context->session, &mech));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_invalidate(isc_sha224_t *context) {
Packit Service ae04f2
	CK_BYTE garbage[ISC_SHA224_DIGESTLENGTH];
Packit Service ae04f2
	CK_ULONG len = ISC_SHA224_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	if (context->handle == NULL)
Packit Service ae04f2
		return;
Packit Service ae04f2
	(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
	isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_update(isc_sha224_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_BYTE_PTR pPart;
Packit Service ae04f2
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha224_t *)0 && data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	DE_CONST(data, pPart);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestUpdate,
Packit Service ae04f2
			(context->session, pPart, (CK_ULONG) len));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_final(uint8_t digest[], isc_sha224_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_ULONG len = ISC_SHA224_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha224_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		PK11_FATALCHECK(pkcs_C_DigestFinal,
Packit Service ae04f2
				(context->session,
Packit Service ae04f2
				 (CK_BYTE_PTR) digest,
Packit Service ae04f2
				 &len));
Packit Service ae04f2
	} else {
Packit Service ae04f2
		CK_BYTE garbage[ISC_SHA224_DIGESTLENGTH];
Packit Service ae04f2
Packit Service ae04f2
		(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
		isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	}
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_init(isc_sha256_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_MECHANISM mech = { CKM_SHA256, NULL, 0 };
Packit Service ae04f2
Packit Service ae04f2
	if (context == (isc_sha256_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	RUNTIME_CHECK(pk11_get_session(context, OP_DIGEST, true, false,
Packit Service ae04f2
				       false, NULL, 0) == ISC_R_SUCCESS);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestInit, (context->session, &mech));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_invalidate(isc_sha256_t *context) {
Packit Service ae04f2
	CK_BYTE garbage[ISC_SHA256_DIGESTLENGTH];
Packit Service ae04f2
	CK_ULONG len = ISC_SHA256_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	if (context->handle == NULL)
Packit Service ae04f2
		return;
Packit Service ae04f2
	(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
	isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_update(isc_sha256_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_BYTE_PTR pPart;
Packit Service ae04f2
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0 && data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	DE_CONST(data, pPart);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestUpdate,
Packit Service ae04f2
			(context->session, pPart, (CK_ULONG) len));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_final(uint8_t digest[], isc_sha256_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_ULONG len = ISC_SHA256_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		PK11_FATALCHECK(pkcs_C_DigestFinal,
Packit Service ae04f2
				(context->session,
Packit Service ae04f2
				 (CK_BYTE_PTR) digest,
Packit Service ae04f2
				 &len));
Packit Service ae04f2
	} else {
Packit Service ae04f2
		CK_BYTE garbage[ISC_SHA256_DIGESTLENGTH];
Packit Service ae04f2
Packit Service ae04f2
		(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
		isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	}
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_init(isc_sha512_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_MECHANISM mech = { CKM_SHA512, NULL, 0 };
Packit Service ae04f2
Packit Service ae04f2
	if (context == (isc_sha512_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	RUNTIME_CHECK(pk11_get_session(context, OP_DIGEST, true, false,
Packit Service ae04f2
				       false, NULL, 0) == ISC_R_SUCCESS);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestInit, (context->session, &mech));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_invalidate(isc_sha512_t *context) {
Packit Service ae04f2
	CK_BYTE garbage[ISC_SHA512_DIGESTLENGTH];
Packit Service ae04f2
	CK_ULONG len = ISC_SHA512_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	if (context->handle == NULL)
Packit Service ae04f2
		return;
Packit Service ae04f2
	(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
	isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_update(isc_sha512_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_BYTE_PTR pPart;
Packit Service ae04f2
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0 && data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	DE_CONST(data, pPart);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestUpdate,
Packit Service ae04f2
			(context->session, pPart, (CK_ULONG) len));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_final(uint8_t digest[], isc_sha512_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_ULONG len = ISC_SHA512_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		PK11_FATALCHECK(pkcs_C_DigestFinal,
Packit Service ae04f2
				(context->session,
Packit Service ae04f2
				 (CK_BYTE_PTR) digest,
Packit Service ae04f2
				 &len));
Packit Service ae04f2
	} else {
Packit Service ae04f2
		CK_BYTE garbage[ISC_SHA512_DIGESTLENGTH];
Packit Service ae04f2
Packit Service ae04f2
		(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
		isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	}
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_init(isc_sha384_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_MECHANISM mech = { CKM_SHA384, NULL, 0 };
Packit Service ae04f2
Packit Service ae04f2
	if (context == (isc_sha384_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	RUNTIME_CHECK(pk11_get_session(context, OP_DIGEST, true, false,
Packit Service ae04f2
				       false, NULL, 0) == ISC_R_SUCCESS);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestInit, (context->session, &mech));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_invalidate(isc_sha384_t *context) {
Packit Service ae04f2
	CK_BYTE garbage[ISC_SHA384_DIGESTLENGTH];
Packit Service ae04f2
	CK_ULONG len = ISC_SHA384_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	if (context->handle == NULL)
Packit Service ae04f2
		return;
Packit Service ae04f2
	(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
	isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_update(isc_sha384_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_BYTE_PTR pPart;
Packit Service ae04f2
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha384_t *)0 && data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	DE_CONST(data, pPart);
Packit Service ae04f2
	PK11_FATALCHECK(pkcs_C_DigestUpdate,
Packit Service ae04f2
			(context->session, pPart, (CK_ULONG) len));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_final(uint8_t digest[], isc_sha384_t *context) {
Packit Service ae04f2
	CK_RV rv;
Packit Service ae04f2
	CK_ULONG len = ISC_SHA384_DIGESTLENGTH;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha384_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		PK11_FATALCHECK(pkcs_C_DigestFinal,
Packit Service ae04f2
				(context->session,
Packit Service ae04f2
				 (CK_BYTE_PTR) digest,
Packit Service ae04f2
				 &len));
Packit Service ae04f2
	} else {
Packit Service ae04f2
		CK_BYTE garbage[ISC_SHA384_DIGESTLENGTH];
Packit Service ae04f2
Packit Service ae04f2
		(void) pkcs_C_DigestFinal(context->session, garbage, &len;;
Packit Service ae04f2
		isc_safe_memwipe(garbage, sizeof(garbage));
Packit Service ae04f2
	}
Packit Service ae04f2
	pk11_return_session(context);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#else
Packit Service ae04f2
Packit Service ae04f2
/*
Packit Service ae04f2
 * UNROLLED TRANSFORM LOOP NOTE:
Packit Service ae04f2
 * You can define SHA2_UNROLL_TRANSFORM to use the unrolled transform
Packit Service ae04f2
 * loop version for the hash transform rounds (defined using macros
Packit Service ae04f2
 * later in this file).  Either define on the command line, for example:
Packit Service ae04f2
 *
Packit Service ae04f2
 *   cc -DISC_SHA2_UNROLL_TRANSFORM -o sha2 sha2.c sha2prog.c
Packit Service ae04f2
 *
Packit Service ae04f2
 * or define below:
Packit Service ae04f2
 *
Packit Service ae04f2
 *   \#define ISC_SHA2_UNROLL_TRANSFORM
Packit Service ae04f2
 *
Packit Service ae04f2
 */
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-256/384/512 Machine Architecture Definitions *****************/
Packit Service ae04f2
/*
Packit Service ae04f2
 * BYTE_ORDER NOTE:
Packit Service ae04f2
 *
Packit Service ae04f2
 * Please make sure that your system defines BYTE_ORDER.  If your
Packit Service ae04f2
 * architecture is little-endian, make sure it also defines
Packit Service ae04f2
 * LITTLE_ENDIAN and that the two (BYTE_ORDER and LITTLE_ENDIAN) are
Packit Service ae04f2
 * equivalent.
Packit Service ae04f2
 *
Packit Service ae04f2
 * If your system does not define the above, then you can do so by
Packit Service ae04f2
 * hand like this:
Packit Service ae04f2
 *
Packit Service ae04f2
 *   \#define LITTLE_ENDIAN 1234
Packit Service ae04f2
 *   \#define BIG_ENDIAN    4321
Packit Service ae04f2
 *
Packit Service ae04f2
 * And for little-endian machines, add:
Packit Service ae04f2
 *
Packit Service ae04f2
 *   \#define BYTE_ORDER LITTLE_ENDIAN
Packit Service ae04f2
 *
Packit Service ae04f2
 * Or for big-endian machines:
Packit Service ae04f2
 *
Packit Service ae04f2
 *   \#define BYTE_ORDER BIG_ENDIAN
Packit Service ae04f2
 *
Packit Service ae04f2
 * The FreeBSD machine this was written on defines BYTE_ORDER
Packit Service ae04f2
 * appropriately by including <sys/types.h> (which in turn includes
Packit Service ae04f2
 * <machine/endian.h> where the appropriate definitions are actually
Packit Service ae04f2
 * made).
Packit Service ae04f2
 */
Packit Service ae04f2
#if !defined(BYTE_ORDER) || (BYTE_ORDER != LITTLE_ENDIAN && BYTE_ORDER != BIG_ENDIAN)
Packit Service ae04f2
#ifndef BYTE_ORDER
Packit Service ae04f2
#ifndef BIG_ENDIAN
Packit Service ae04f2
#define BIG_ENDIAN 4321
Packit Service ae04f2
#endif
Packit Service ae04f2
#ifndef LITTLE_ENDIAN
Packit Service ae04f2
#define LITTLE_ENDIAN 1234
Packit Service ae04f2
#endif
Packit Service ae04f2
#ifdef WORDS_BIGENDIAN
Packit Service ae04f2
#define BYTE_ORDER BIG_ENDIAN
Packit Service ae04f2
#else
Packit Service ae04f2
#define BYTE_ORDER LITTLE_ENDIAN
Packit Service ae04f2
#endif
Packit Service ae04f2
#else
Packit Service ae04f2
#error Define BYTE_ORDER to be equal to either LITTLE_ENDIAN or BIG_ENDIAN
Packit Service ae04f2
#endif
Packit Service ae04f2
#endif
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-256/384/512 Various Length Definitions ***********************/
Packit Service ae04f2
/* NOTE: Most of these are in sha2.h */
Packit Service ae04f2
#define ISC_SHA256_SHORT_BLOCK_LENGTH	(ISC_SHA256_BLOCK_LENGTH - 8)
Packit Service ae04f2
#define ISC_SHA384_SHORT_BLOCK_LENGTH	(ISC_SHA384_BLOCK_LENGTH - 16)
Packit Service ae04f2
#define ISC_SHA512_SHORT_BLOCK_LENGTH	(ISC_SHA512_BLOCK_LENGTH - 16)
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
/*** ENDIAN REVERSAL MACROS *******************************************/
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
#define REVERSE32(w,x)	{ \
Packit Service ae04f2
	uint32_t tmp = (w); \
Packit Service ae04f2
	tmp = (tmp >> 16) | (tmp << 16); \
Packit Service ae04f2
	(x) = ((tmp & 0xff00ff00UL) >> 8) | ((tmp & 0x00ff00ffUL) << 8); \
Packit Service ae04f2
}
Packit Service ae04f2
#ifdef WIN32
Packit Service ae04f2
#define REVERSE64(w,x)	{ \
Packit Service ae04f2
	uint64_t tmp = (w); \
Packit Service ae04f2
	tmp = (tmp >> 32) | (tmp << 32); \
Packit Service ae04f2
	tmp = ((tmp & 0xff00ff00ff00ff00UL) >> 8) | \
Packit Service ae04f2
	      ((tmp & 0x00ff00ff00ff00ffUL) << 8); \
Packit Service ae04f2
	(x) = ((tmp & 0xffff0000ffff0000UL) >> 16) | \
Packit Service ae04f2
	      ((tmp & 0x0000ffff0000ffffUL) << 16); \
Packit Service ae04f2
}
Packit Service ae04f2
#else
Packit Service ae04f2
#define REVERSE64(w,x)	{ \
Packit Service ae04f2
	uint64_t tmp = (w); \
Packit Service ae04f2
	tmp = (tmp >> 32) | (tmp << 32); \
Packit Service ae04f2
	tmp = ((tmp & 0xff00ff00ff00ff00ULL) >> 8) | \
Packit Service ae04f2
	      ((tmp & 0x00ff00ff00ff00ffULL) << 8); \
Packit Service ae04f2
	(x) = ((tmp & 0xffff0000ffff0000ULL) >> 16) | \
Packit Service ae04f2
	      ((tmp & 0x0000ffff0000ffffULL) << 16); \
Packit Service ae04f2
}
Packit Service ae04f2
#endif
Packit Service ae04f2
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
Packit Service ae04f2
/*
Packit Service ae04f2
 * Macro for incrementally adding the unsigned 64-bit integer n to the
Packit Service ae04f2
 * unsigned 128-bit integer (represented using a two-element array of
Packit Service ae04f2
 * 64-bit words):
Packit Service ae04f2
 */
Packit Service ae04f2
#define ADDINC128(w,n)	{ \
Packit Service ae04f2
	(w)[0] += (uint64_t)(n); \
Packit Service ae04f2
	if ((w)[0] < (n)) { \
Packit Service ae04f2
		(w)[1]++; \
Packit Service ae04f2
	} \
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
/*** THE SIX LOGICAL FUNCTIONS ****************************************/
Packit Service ae04f2
/*
Packit Service ae04f2
 * Bit shifting and rotation (used by the six SHA-XYZ logical functions:
Packit Service ae04f2
 *
Packit Service ae04f2
 *   NOTE:  The naming of R and S appears backwards here (R is a SHIFT and
Packit Service ae04f2
 *   S is a ROTATION) because the SHA-256/384/512 description document
Packit Service ae04f2
 *   (see http://csrc.nist.gov/cryptval/shs/sha256-384-512.pdf) uses this
Packit Service ae04f2
 *   same "backwards" definition.
Packit Service ae04f2
 */
Packit Service ae04f2
/* Shift-right (used in SHA-256, SHA-384, and SHA-512): */
Packit Service ae04f2
#define R(b,x) 		((x) >> (b))
Packit Service ae04f2
/* 32-bit Rotate-right (used in SHA-256): */
Packit Service ae04f2
#define S32(b,x)	(((x) >> (b)) | ((x) << (32 - (b))))
Packit Service ae04f2
/* 64-bit Rotate-right (used in SHA-384 and SHA-512): */
Packit Service ae04f2
#define S64(b,x)	(((x) >> (b)) | ((x) << (64 - (b))))
Packit Service ae04f2
Packit Service ae04f2
/* Two of six logical functions used in SHA-256, SHA-384, and SHA-512: */
Packit Service ae04f2
#define Ch(x,y,z)	(((x) & (y)) ^ ((~(x)) & (z)))
Packit Service ae04f2
#define Maj(x,y,z)	(((x) & (y)) ^ ((x) & (z)) ^ ((y) & (z)))
Packit Service ae04f2
Packit Service ae04f2
/* Four of six logical functions used in SHA-256: */
Packit Service ae04f2
#define Sigma0_256(x)	(S32(2,  (x)) ^ S32(13, (x)) ^ S32(22, (x)))
Packit Service ae04f2
#define Sigma1_256(x)	(S32(6,  (x)) ^ S32(11, (x)) ^ S32(25, (x)))
Packit Service ae04f2
#define sigma0_256(x)	(S32(7,  (x)) ^ S32(18, (x)) ^ R(3 ,   (x)))
Packit Service ae04f2
#define sigma1_256(x)	(S32(17, (x)) ^ S32(19, (x)) ^ R(10,   (x)))
Packit Service ae04f2
Packit Service ae04f2
/* Four of six logical functions used in SHA-384 and SHA-512: */
Packit Service ae04f2
#define Sigma0_512(x)	(S64(28, (x)) ^ S64(34, (x)) ^ S64(39, (x)))
Packit Service ae04f2
#define Sigma1_512(x)	(S64(14, (x)) ^ S64(18, (x)) ^ S64(41, (x)))
Packit Service ae04f2
#define sigma0_512(x)	(S64( 1, (x)) ^ S64( 8, (x)) ^ R( 7,   (x)))
Packit Service ae04f2
#define sigma1_512(x)	(S64(19, (x)) ^ S64(61, (x)) ^ R( 6,   (x)))
Packit Service ae04f2
Packit Service ae04f2
/*** INTERNAL FUNCTION PROTOTYPES *************************************/
Packit Service ae04f2
/* NOTE: These should not be accessed directly from outside this
Packit Service ae04f2
 * library -- they are intended for private internal visibility/use
Packit Service ae04f2
 * only.
Packit Service ae04f2
 */
Packit Service ae04f2
void isc_sha512_last(isc_sha512_t *);
Packit Service ae04f2
void isc_sha256_transform(isc_sha256_t *, const uint32_t*);
Packit Service ae04f2
void isc_sha512_transform(isc_sha512_t *, const uint64_t*);
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-XYZ INITIAL HASH VALUES AND CONSTANTS ************************/
Packit Service ae04f2
/* Hash constant words K for SHA-224 and SHA-256: */
Packit Service ae04f2
static const uint32_t K256[64] = {
Packit Service ae04f2
	0x428a2f98UL, 0x71374491UL, 0xb5c0fbcfUL, 0xe9b5dba5UL,
Packit Service ae04f2
	0x3956c25bUL, 0x59f111f1UL, 0x923f82a4UL, 0xab1c5ed5UL,
Packit Service ae04f2
	0xd807aa98UL, 0x12835b01UL, 0x243185beUL, 0x550c7dc3UL,
Packit Service ae04f2
	0x72be5d74UL, 0x80deb1feUL, 0x9bdc06a7UL, 0xc19bf174UL,
Packit Service ae04f2
	0xe49b69c1UL, 0xefbe4786UL, 0x0fc19dc6UL, 0x240ca1ccUL,
Packit Service ae04f2
	0x2de92c6fUL, 0x4a7484aaUL, 0x5cb0a9dcUL, 0x76f988daUL,
Packit Service ae04f2
	0x983e5152UL, 0xa831c66dUL, 0xb00327c8UL, 0xbf597fc7UL,
Packit Service ae04f2
	0xc6e00bf3UL, 0xd5a79147UL, 0x06ca6351UL, 0x14292967UL,
Packit Service ae04f2
	0x27b70a85UL, 0x2e1b2138UL, 0x4d2c6dfcUL, 0x53380d13UL,
Packit Service ae04f2
	0x650a7354UL, 0x766a0abbUL, 0x81c2c92eUL, 0x92722c85UL,
Packit Service ae04f2
	0xa2bfe8a1UL, 0xa81a664bUL, 0xc24b8b70UL, 0xc76c51a3UL,
Packit Service ae04f2
	0xd192e819UL, 0xd6990624UL, 0xf40e3585UL, 0x106aa070UL,
Packit Service ae04f2
	0x19a4c116UL, 0x1e376c08UL, 0x2748774cUL, 0x34b0bcb5UL,
Packit Service ae04f2
	0x391c0cb3UL, 0x4ed8aa4aUL, 0x5b9cca4fUL, 0x682e6ff3UL,
Packit Service ae04f2
	0x748f82eeUL, 0x78a5636fUL, 0x84c87814UL, 0x8cc70208UL,
Packit Service ae04f2
	0x90befffaUL, 0xa4506cebUL, 0xbef9a3f7UL, 0xc67178f2UL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
/* Initial hash value H for SHA-224: */
Packit Service ae04f2
static const uint32_t sha224_initial_hash_value[8] = {
Packit Service ae04f2
	0xc1059ed8UL,
Packit Service ae04f2
	0x367cd507UL,
Packit Service ae04f2
	0x3070dd17UL,
Packit Service ae04f2
	0xf70e5939UL,
Packit Service ae04f2
	0xffc00b31UL,
Packit Service ae04f2
	0x68581511UL,
Packit Service ae04f2
	0x64f98fa7UL,
Packit Service ae04f2
	0xbefa4fa4UL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
/* Initial hash value H for SHA-256: */
Packit Service ae04f2
static const uint32_t sha256_initial_hash_value[8] = {
Packit Service ae04f2
	0x6a09e667UL,
Packit Service ae04f2
	0xbb67ae85UL,
Packit Service ae04f2
	0x3c6ef372UL,
Packit Service ae04f2
	0xa54ff53aUL,
Packit Service ae04f2
	0x510e527fUL,
Packit Service ae04f2
	0x9b05688cUL,
Packit Service ae04f2
	0x1f83d9abUL,
Packit Service ae04f2
	0x5be0cd19UL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
#ifdef WIN32
Packit Service ae04f2
/* Hash constant words K for SHA-384 and SHA-512: */
Packit Service ae04f2
static const uint64_t K512[80] = {
Packit Service ae04f2
	0x428a2f98d728ae22UL, 0x7137449123ef65cdUL,
Packit Service ae04f2
	0xb5c0fbcfec4d3b2fUL, 0xe9b5dba58189dbbcUL,
Packit Service ae04f2
	0x3956c25bf348b538UL, 0x59f111f1b605d019UL,
Packit Service ae04f2
	0x923f82a4af194f9bUL, 0xab1c5ed5da6d8118UL,
Packit Service ae04f2
	0xd807aa98a3030242UL, 0x12835b0145706fbeUL,
Packit Service ae04f2
	0x243185be4ee4b28cUL, 0x550c7dc3d5ffb4e2UL,
Packit Service ae04f2
	0x72be5d74f27b896fUL, 0x80deb1fe3b1696b1UL,
Packit Service ae04f2
	0x9bdc06a725c71235UL, 0xc19bf174cf692694UL,
Packit Service ae04f2
	0xe49b69c19ef14ad2UL, 0xefbe4786384f25e3UL,
Packit Service ae04f2
	0x0fc19dc68b8cd5b5UL, 0x240ca1cc77ac9c65UL,
Packit Service ae04f2
	0x2de92c6f592b0275UL, 0x4a7484aa6ea6e483UL,
Packit Service ae04f2
	0x5cb0a9dcbd41fbd4UL, 0x76f988da831153b5UL,
Packit Service ae04f2
	0x983e5152ee66dfabUL, 0xa831c66d2db43210UL,
Packit Service ae04f2
	0xb00327c898fb213fUL, 0xbf597fc7beef0ee4UL,
Packit Service ae04f2
	0xc6e00bf33da88fc2UL, 0xd5a79147930aa725UL,
Packit Service ae04f2
	0x06ca6351e003826fUL, 0x142929670a0e6e70UL,
Packit Service ae04f2
	0x27b70a8546d22ffcUL, 0x2e1b21385c26c926UL,
Packit Service ae04f2
	0x4d2c6dfc5ac42aedUL, 0x53380d139d95b3dfUL,
Packit Service ae04f2
	0x650a73548baf63deUL, 0x766a0abb3c77b2a8UL,
Packit Service ae04f2
	0x81c2c92e47edaee6UL, 0x92722c851482353bUL,
Packit Service ae04f2
	0xa2bfe8a14cf10364UL, 0xa81a664bbc423001UL,
Packit Service ae04f2
	0xc24b8b70d0f89791UL, 0xc76c51a30654be30UL,
Packit Service ae04f2
	0xd192e819d6ef5218UL, 0xd69906245565a910UL,
Packit Service ae04f2
	0xf40e35855771202aUL, 0x106aa07032bbd1b8UL,
Packit Service ae04f2
	0x19a4c116b8d2d0c8UL, 0x1e376c085141ab53UL,
Packit Service ae04f2
	0x2748774cdf8eeb99UL, 0x34b0bcb5e19b48a8UL,
Packit Service ae04f2
	0x391c0cb3c5c95a63UL, 0x4ed8aa4ae3418acbUL,
Packit Service ae04f2
	0x5b9cca4f7763e373UL, 0x682e6ff3d6b2b8a3UL,
Packit Service ae04f2
	0x748f82ee5defb2fcUL, 0x78a5636f43172f60UL,
Packit Service ae04f2
	0x84c87814a1f0ab72UL, 0x8cc702081a6439ecUL,
Packit Service ae04f2
	0x90befffa23631e28UL, 0xa4506cebde82bde9UL,
Packit Service ae04f2
	0xbef9a3f7b2c67915UL, 0xc67178f2e372532bUL,
Packit Service ae04f2
	0xca273eceea26619cUL, 0xd186b8c721c0c207UL,
Packit Service ae04f2
	0xeada7dd6cde0eb1eUL, 0xf57d4f7fee6ed178UL,
Packit Service ae04f2
	0x06f067aa72176fbaUL, 0x0a637dc5a2c898a6UL,
Packit Service ae04f2
	0x113f9804bef90daeUL, 0x1b710b35131c471bUL,
Packit Service ae04f2
	0x28db77f523047d84UL, 0x32caab7b40c72493UL,
Packit Service ae04f2
	0x3c9ebe0a15c9bebcUL, 0x431d67c49c100d4cUL,
Packit Service ae04f2
	0x4cc5d4becb3e42b6UL, 0x597f299cfc657e2aUL,
Packit Service ae04f2
	0x5fcb6fab3ad6faecUL, 0x6c44198c4a475817UL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
/* Initial hash value H for SHA-384: */
Packit Service ae04f2
static const uint64_t sha384_initial_hash_value[8] = {
Packit Service ae04f2
	0xcbbb9d5dc1059ed8UL,
Packit Service ae04f2
	0x629a292a367cd507UL,
Packit Service ae04f2
	0x9159015a3070dd17UL,
Packit Service ae04f2
	0x152fecd8f70e5939UL,
Packit Service ae04f2
	0x67332667ffc00b31UL,
Packit Service ae04f2
	0x8eb44a8768581511UL,
Packit Service ae04f2
	0xdb0c2e0d64f98fa7UL,
Packit Service ae04f2
	0x47b5481dbefa4fa4UL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
/* Initial hash value H for SHA-512: */
Packit Service ae04f2
static const uint64_t sha512_initial_hash_value[8] = {
Packit Service ae04f2
	0x6a09e667f3bcc908U,
Packit Service ae04f2
	0xbb67ae8584caa73bUL,
Packit Service ae04f2
	0x3c6ef372fe94f82bUL,
Packit Service ae04f2
	0xa54ff53a5f1d36f1UL,
Packit Service ae04f2
	0x510e527fade682d1UL,
Packit Service ae04f2
	0x9b05688c2b3e6c1fUL,
Packit Service ae04f2
	0x1f83d9abfb41bd6bUL,
Packit Service ae04f2
	0x5be0cd19137e2179UL
Packit Service ae04f2
};
Packit Service ae04f2
#else
Packit Service ae04f2
/* Hash constant words K for SHA-384 and SHA-512: */
Packit Service ae04f2
static const uint64_t K512[80] = {
Packit Service ae04f2
	0x428a2f98d728ae22ULL, 0x7137449123ef65cdULL,
Packit Service ae04f2
	0xb5c0fbcfec4d3b2fULL, 0xe9b5dba58189dbbcULL,
Packit Service ae04f2
	0x3956c25bf348b538ULL, 0x59f111f1b605d019ULL,
Packit Service ae04f2
	0x923f82a4af194f9bULL, 0xab1c5ed5da6d8118ULL,
Packit Service ae04f2
	0xd807aa98a3030242ULL, 0x12835b0145706fbeULL,
Packit Service ae04f2
	0x243185be4ee4b28cULL, 0x550c7dc3d5ffb4e2ULL,
Packit Service ae04f2
	0x72be5d74f27b896fULL, 0x80deb1fe3b1696b1ULL,
Packit Service ae04f2
	0x9bdc06a725c71235ULL, 0xc19bf174cf692694ULL,
Packit Service ae04f2
	0xe49b69c19ef14ad2ULL, 0xefbe4786384f25e3ULL,
Packit Service ae04f2
	0x0fc19dc68b8cd5b5ULL, 0x240ca1cc77ac9c65ULL,
Packit Service ae04f2
	0x2de92c6f592b0275ULL, 0x4a7484aa6ea6e483ULL,
Packit Service ae04f2
	0x5cb0a9dcbd41fbd4ULL, 0x76f988da831153b5ULL,
Packit Service ae04f2
	0x983e5152ee66dfabULL, 0xa831c66d2db43210ULL,
Packit Service ae04f2
	0xb00327c898fb213fULL, 0xbf597fc7beef0ee4ULL,
Packit Service ae04f2
	0xc6e00bf33da88fc2ULL, 0xd5a79147930aa725ULL,
Packit Service ae04f2
	0x06ca6351e003826fULL, 0x142929670a0e6e70ULL,
Packit Service ae04f2
	0x27b70a8546d22ffcULL, 0x2e1b21385c26c926ULL,
Packit Service ae04f2
	0x4d2c6dfc5ac42aedULL, 0x53380d139d95b3dfULL,
Packit Service ae04f2
	0x650a73548baf63deULL, 0x766a0abb3c77b2a8ULL,
Packit Service ae04f2
	0x81c2c92e47edaee6ULL, 0x92722c851482353bULL,
Packit Service ae04f2
	0xa2bfe8a14cf10364ULL, 0xa81a664bbc423001ULL,
Packit Service ae04f2
	0xc24b8b70d0f89791ULL, 0xc76c51a30654be30ULL,
Packit Service ae04f2
	0xd192e819d6ef5218ULL, 0xd69906245565a910ULL,
Packit Service ae04f2
	0xf40e35855771202aULL, 0x106aa07032bbd1b8ULL,
Packit Service ae04f2
	0x19a4c116b8d2d0c8ULL, 0x1e376c085141ab53ULL,
Packit Service ae04f2
	0x2748774cdf8eeb99ULL, 0x34b0bcb5e19b48a8ULL,
Packit Service ae04f2
	0x391c0cb3c5c95a63ULL, 0x4ed8aa4ae3418acbULL,
Packit Service ae04f2
	0x5b9cca4f7763e373ULL, 0x682e6ff3d6b2b8a3ULL,
Packit Service ae04f2
	0x748f82ee5defb2fcULL, 0x78a5636f43172f60ULL,
Packit Service ae04f2
	0x84c87814a1f0ab72ULL, 0x8cc702081a6439ecULL,
Packit Service ae04f2
	0x90befffa23631e28ULL, 0xa4506cebde82bde9ULL,
Packit Service ae04f2
	0xbef9a3f7b2c67915ULL, 0xc67178f2e372532bULL,
Packit Service ae04f2
	0xca273eceea26619cULL, 0xd186b8c721c0c207ULL,
Packit Service ae04f2
	0xeada7dd6cde0eb1eULL, 0xf57d4f7fee6ed178ULL,
Packit Service ae04f2
	0x06f067aa72176fbaULL, 0x0a637dc5a2c898a6ULL,
Packit Service ae04f2
	0x113f9804bef90daeULL, 0x1b710b35131c471bULL,
Packit Service ae04f2
	0x28db77f523047d84ULL, 0x32caab7b40c72493ULL,
Packit Service ae04f2
	0x3c9ebe0a15c9bebcULL, 0x431d67c49c100d4cULL,
Packit Service ae04f2
	0x4cc5d4becb3e42b6ULL, 0x597f299cfc657e2aULL,
Packit Service ae04f2
	0x5fcb6fab3ad6faecULL, 0x6c44198c4a475817ULL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
/* Initial hash value H for SHA-384: */
Packit Service ae04f2
static const uint64_t sha384_initial_hash_value[8] = {
Packit Service ae04f2
	0xcbbb9d5dc1059ed8ULL,
Packit Service ae04f2
	0x629a292a367cd507ULL,
Packit Service ae04f2
	0x9159015a3070dd17ULL,
Packit Service ae04f2
	0x152fecd8f70e5939ULL,
Packit Service ae04f2
	0x67332667ffc00b31ULL,
Packit Service ae04f2
	0x8eb44a8768581511ULL,
Packit Service ae04f2
	0xdb0c2e0d64f98fa7ULL,
Packit Service ae04f2
	0x47b5481dbefa4fa4ULL
Packit Service ae04f2
};
Packit Service ae04f2
Packit Service ae04f2
/* Initial hash value H for SHA-512: */
Packit Service ae04f2
static const uint64_t sha512_initial_hash_value[8] = {
Packit Service ae04f2
	0x6a09e667f3bcc908ULL,
Packit Service ae04f2
	0xbb67ae8584caa73bULL,
Packit Service ae04f2
	0x3c6ef372fe94f82bULL,
Packit Service ae04f2
	0xa54ff53a5f1d36f1ULL,
Packit Service ae04f2
	0x510e527fade682d1ULL,
Packit Service ae04f2
	0x9b05688c2b3e6c1fULL,
Packit Service ae04f2
	0x1f83d9abfb41bd6bULL,
Packit Service ae04f2
	0x5be0cd19137e2179ULL
Packit Service ae04f2
};
Packit Service ae04f2
#endif
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-224: *********************************************************/
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_init(isc_sha224_t *context) {
Packit Service ae04f2
	if (context == (isc_sha256_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	memmove(context->state, sha224_initial_hash_value,
Packit Service ae04f2
		ISC_SHA256_DIGESTLENGTH);
Packit Service ae04f2
	memset(context->buffer, 0, ISC_SHA256_BLOCK_LENGTH);
Packit Service ae04f2
	context->bitcount = 0;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_invalidate(isc_sha224_t *context) {
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_update(isc_sha224_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	isc_sha256_update((isc_sha256_t *)context, data, len);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha224_final(uint8_t digest[], isc_sha224_t *context) {
Packit Service ae04f2
	uint8_t sha256_digest[ISC_SHA256_DIGESTLENGTH];
Packit Service ae04f2
	isc_sha256_final(sha256_digest, (isc_sha256_t *)context);
Packit Service ae04f2
	memmove(digest, sha256_digest, ISC_SHA224_DIGESTLENGTH);
Packit Service ae04f2
	isc_safe_memwipe(sha256_digest, sizeof(sha256_digest));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-256: *********************************************************/
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_init(isc_sha256_t *context) {
Packit Service ae04f2
	if (context == (isc_sha256_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	memmove(context->state, sha256_initial_hash_value,
Packit Service ae04f2
	       ISC_SHA256_DIGESTLENGTH);
Packit Service ae04f2
	memset(context->buffer, 0, ISC_SHA256_BLOCK_LENGTH);
Packit Service ae04f2
	context->bitcount = 0;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_invalidate(isc_sha256_t *context) {
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#ifdef ISC_SHA2_UNROLL_TRANSFORM
Packit Service ae04f2
Packit Service ae04f2
/* Unrolled SHA-256 round macros: */
Packit Service ae04f2
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
Packit Service ae04f2
#define ROUND256_0_TO_15(a,b,c,d,e,f,g,h)	\
Packit Service ae04f2
	REVERSE32(*data++, W256[j]); \
Packit Service ae04f2
	T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
Packit Service ae04f2
	     K256[j] + W256[j]; \
Packit Service ae04f2
	(d) += T1; \
Packit Service ae04f2
	(h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
Packit Service ae04f2
	j++
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
#else /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
Packit Service ae04f2
#define ROUND256_0_TO_15(a,b,c,d,e,f,g,h)	\
Packit Service ae04f2
	T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + \
Packit Service ae04f2
	     K256[j] + (W256[j] = *data++); \
Packit Service ae04f2
	(d) += T1; \
Packit Service ae04f2
	(h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
Packit Service ae04f2
	j++
Packit Service ae04f2
Packit Service ae04f2
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
Packit Service ae04f2
#define ROUND256(a,b,c,d,e,f,g,h)	\
Packit Service ae04f2
	s0 = W256[(j+1)&0x0f]; \
Packit Service ae04f2
	s0 = sigma0_256(s0); \
Packit Service ae04f2
	s1 = W256[(j+14)&0x0f]; \
Packit Service ae04f2
	s1 = sigma1_256(s1); \
Packit Service ae04f2
	T1 = (h) + Sigma1_256(e) + Ch((e), (f), (g)) + K256[j] + \
Packit Service ae04f2
	     (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0); \
Packit Service ae04f2
	(d) += T1; \
Packit Service ae04f2
	(h) = T1 + Sigma0_256(a) + Maj((a), (b), (c)); \
Packit Service ae04f2
	j++
Packit Service ae04f2
Packit Service ae04f2
void isc_sha256_transform(isc_sha256_t *context, const uint32_t* data) {
Packit Service ae04f2
	uint32_t	a, b, c, d, e, f, g, h, s0, s1;
Packit Service ae04f2
	uint32_t	T1, *W256;
Packit Service ae04f2
	int		j;
Packit Service ae04f2
Packit Service ae04f2
	W256 = (uint32_t*)context->buffer;
Packit Service ae04f2
Packit Service ae04f2
	/* Initialize registers with the prev. intermediate value */
Packit Service ae04f2
	a = context->state[0];
Packit Service ae04f2
	b = context->state[1];
Packit Service ae04f2
	c = context->state[2];
Packit Service ae04f2
	d = context->state[3];
Packit Service ae04f2
	e = context->state[4];
Packit Service ae04f2
	f = context->state[5];
Packit Service ae04f2
	g = context->state[6];
Packit Service ae04f2
	h = context->state[7];
Packit Service ae04f2
Packit Service ae04f2
	j = 0;
Packit Service ae04f2
	do {
Packit Service ae04f2
		/* Rounds 0 to 15 (unrolled): */
Packit Service ae04f2
		ROUND256_0_TO_15(a,b,c,d,e,f,g,h);
Packit Service ae04f2
		ROUND256_0_TO_15(h,a,b,c,d,e,f,g);
Packit Service ae04f2
		ROUND256_0_TO_15(g,h,a,b,c,d,e,f);
Packit Service ae04f2
		ROUND256_0_TO_15(f,g,h,a,b,c,d,e);
Packit Service ae04f2
		ROUND256_0_TO_15(e,f,g,h,a,b,c,d);
Packit Service ae04f2
		ROUND256_0_TO_15(d,e,f,g,h,a,b,c);
Packit Service ae04f2
		ROUND256_0_TO_15(c,d,e,f,g,h,a,b);
Packit Service ae04f2
		ROUND256_0_TO_15(b,c,d,e,f,g,h,a);
Packit Service ae04f2
	} while (j < 16);
Packit Service ae04f2
Packit Service ae04f2
	/* Now for the remaining rounds to 64: */
Packit Service ae04f2
	do {
Packit Service ae04f2
		ROUND256(a,b,c,d,e,f,g,h);
Packit Service ae04f2
		ROUND256(h,a,b,c,d,e,f,g);
Packit Service ae04f2
		ROUND256(g,h,a,b,c,d,e,f);
Packit Service ae04f2
		ROUND256(f,g,h,a,b,c,d,e);
Packit Service ae04f2
		ROUND256(e,f,g,h,a,b,c,d);
Packit Service ae04f2
		ROUND256(d,e,f,g,h,a,b,c);
Packit Service ae04f2
		ROUND256(c,d,e,f,g,h,a,b);
Packit Service ae04f2
		ROUND256(b,c,d,e,f,g,h,a);
Packit Service ae04f2
	} while (j < 64);
Packit Service ae04f2
Packit Service ae04f2
	/* Compute the current intermediate hash value */
Packit Service ae04f2
	context->state[0] += a;
Packit Service ae04f2
	context->state[1] += b;
Packit Service ae04f2
	context->state[2] += c;
Packit Service ae04f2
	context->state[3] += d;
Packit Service ae04f2
	context->state[4] += e;
Packit Service ae04f2
	context->state[5] += f;
Packit Service ae04f2
	context->state[6] += g;
Packit Service ae04f2
	context->state[7] += h;
Packit Service ae04f2
Packit Service ae04f2
	/* Clean up */
Packit Service ae04f2
	a = b = c = d = e = f = g = h = T1 = 0;
Packit Service ae04f2
	/* Avoid compiler warnings */
Packit Service ae04f2
	POST(a); POST(b); POST(c); POST(d); POST(e); POST(f);
Packit Service ae04f2
	POST(g); POST(h); POST(T1);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#else /* ISC_SHA2_UNROLL_TRANSFORM */
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_transform(isc_sha256_t *context, const uint32_t* data) {
Packit Service ae04f2
	uint32_t	a, b, c, d, e, f, g, h, s0, s1;
Packit Service ae04f2
	uint32_t	T1, T2, *W256;
Packit Service ae04f2
	int		j;
Packit Service ae04f2
Packit Service ae04f2
	W256 = (uint32_t*)context->buffer;
Packit Service ae04f2
Packit Service ae04f2
	/* Initialize registers with the prev. intermediate value */
Packit Service ae04f2
	a = context->state[0];
Packit Service ae04f2
	b = context->state[1];
Packit Service ae04f2
	c = context->state[2];
Packit Service ae04f2
	d = context->state[3];
Packit Service ae04f2
	e = context->state[4];
Packit Service ae04f2
	f = context->state[5];
Packit Service ae04f2
	g = context->state[6];
Packit Service ae04f2
	h = context->state[7];
Packit Service ae04f2
Packit Service ae04f2
	j = 0;
Packit Service ae04f2
	do {
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
		/* Copy data while converting to host byte order */
Packit Service ae04f2
		REVERSE32(*data++,W256[j]);
Packit Service ae04f2
		/* Apply the SHA-256 compression function to update a..h */
Packit Service ae04f2
		T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + W256[j];
Packit Service ae04f2
#else /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
		/* Apply the SHA-256 compression function to update a..h with copy */
Packit Service ae04f2
		T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] + (W256[j] = *data++);
Packit Service ae04f2
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
		T2 = Sigma0_256(a) + Maj(a, b, c);
Packit Service ae04f2
		h = g;
Packit Service ae04f2
		g = f;
Packit Service ae04f2
		f = e;
Packit Service ae04f2
		e = d + T1;
Packit Service ae04f2
		d = c;
Packit Service ae04f2
		c = b;
Packit Service ae04f2
		b = a;
Packit Service ae04f2
		a = T1 + T2;
Packit Service ae04f2
Packit Service ae04f2
		j++;
Packit Service ae04f2
	} while (j < 16);
Packit Service ae04f2
Packit Service ae04f2
	do {
Packit Service ae04f2
		/* Part of the message block expansion: */
Packit Service ae04f2
		s0 = W256[(j+1)&0x0f];
Packit Service ae04f2
		s0 = sigma0_256(s0);
Packit Service ae04f2
		s1 = W256[(j+14)&0x0f];
Packit Service ae04f2
		s1 = sigma1_256(s1);
Packit Service ae04f2
Packit Service ae04f2
		/* Apply the SHA-256 compression function to update a..h */
Packit Service ae04f2
		T1 = h + Sigma1_256(e) + Ch(e, f, g) + K256[j] +
Packit Service ae04f2
		     (W256[j&0x0f] += s1 + W256[(j+9)&0x0f] + s0);
Packit Service ae04f2
		T2 = Sigma0_256(a) + Maj(a, b, c);
Packit Service ae04f2
		h = g;
Packit Service ae04f2
		g = f;
Packit Service ae04f2
		f = e;
Packit Service ae04f2
		e = d + T1;
Packit Service ae04f2
		d = c;
Packit Service ae04f2
		c = b;
Packit Service ae04f2
		b = a;
Packit Service ae04f2
		a = T1 + T2;
Packit Service ae04f2
Packit Service ae04f2
		j++;
Packit Service ae04f2
	} while (j < 64);
Packit Service ae04f2
Packit Service ae04f2
	/* Compute the current intermediate hash value */
Packit Service ae04f2
	context->state[0] += a;
Packit Service ae04f2
	context->state[1] += b;
Packit Service ae04f2
	context->state[2] += c;
Packit Service ae04f2
	context->state[3] += d;
Packit Service ae04f2
	context->state[4] += e;
Packit Service ae04f2
	context->state[5] += f;
Packit Service ae04f2
	context->state[6] += g;
Packit Service ae04f2
	context->state[7] += h;
Packit Service ae04f2
Packit Service ae04f2
	/* Clean up */
Packit Service ae04f2
	a = b = c = d = e = f = g = h = T1 = T2 = 0;
Packit Service ae04f2
	/* Avoid compiler warnings */
Packit Service ae04f2
	POST(a); POST(b); POST(c); POST(d); POST(e); POST(f);
Packit Service ae04f2
	POST(g); POST(h); POST(T1); POST(T2);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#endif /* ISC_SHA2_UNROLL_TRANSFORM */
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_update(isc_sha256_t *context, const uint8_t *data, size_t len) {
Packit Service ae04f2
	unsigned int	freespace, usedspace;
Packit Service ae04f2
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0 && data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	usedspace = (unsigned int)((context->bitcount >> 3) %
Packit Service ae04f2
				   ISC_SHA256_BLOCK_LENGTH);
Packit Service ae04f2
	if (usedspace > 0) {
Packit Service ae04f2
		/* Calculate how much free space is available in the buffer */
Packit Service ae04f2
		freespace = ISC_SHA256_BLOCK_LENGTH - usedspace;
Packit Service ae04f2
Packit Service ae04f2
		if (len >= freespace) {
Packit Service ae04f2
			/* Fill the buffer completely and process it */
Packit Service ae04f2
			memmove(&context->buffer[usedspace], data, freespace);
Packit Service ae04f2
			context->bitcount += freespace << 3;
Packit Service ae04f2
			len -= freespace;
Packit Service ae04f2
			data += freespace;
Packit Service ae04f2
			isc_sha256_transform(context,
Packit Service ae04f2
					     (uint32_t*)context->buffer);
Packit Service ae04f2
		} else {
Packit Service ae04f2
			/* The buffer is not yet full */
Packit Service ae04f2
			memmove(&context->buffer[usedspace], data, len);
Packit Service ae04f2
			context->bitcount += len << 3;
Packit Service ae04f2
			/* Clean up: */
Packit Service ae04f2
			usedspace = freespace = 0;
Packit Service ae04f2
			/* Avoid compiler warnings: */
Packit Service ae04f2
			POST(usedspace); POST(freespace);
Packit Service ae04f2
			return;
Packit Service ae04f2
		}
Packit Service ae04f2
	}
Packit Service ae04f2
	while (len >= ISC_SHA256_BLOCK_LENGTH) {
Packit Service ae04f2
		/* Process as many complete blocks as we can */
Packit Service ae04f2
		memmove(context->buffer, data, ISC_SHA256_BLOCK_LENGTH);
Packit Service ae04f2
		isc_sha256_transform(context, (uint32_t*)context->buffer);
Packit Service ae04f2
		context->bitcount += ISC_SHA256_BLOCK_LENGTH << 3;
Packit Service ae04f2
		len -= ISC_SHA256_BLOCK_LENGTH;
Packit Service ae04f2
		data += ISC_SHA256_BLOCK_LENGTH;
Packit Service ae04f2
	}
Packit Service ae04f2
	if (len > 0U) {
Packit Service ae04f2
		/* There's left-overs, so save 'em */
Packit Service ae04f2
		memmove(context->buffer, data, len);
Packit Service ae04f2
		context->bitcount += len << 3;
Packit Service ae04f2
	}
Packit Service ae04f2
	/* Clean up: */
Packit Service ae04f2
	usedspace = freespace = 0;
Packit Service ae04f2
	/* Avoid compiler warnings: */
Packit Service ae04f2
	POST(usedspace); POST(freespace);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha256_final(uint8_t digest[], isc_sha256_t *context) {
Packit Service ae04f2
	uint32_t	*d = (uint32_t*)digest;
Packit Service ae04f2
	unsigned int	usedspace;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		usedspace = (unsigned int)((context->bitcount >> 3) %
Packit Service ae04f2
					   ISC_SHA256_BLOCK_LENGTH);
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
		/* Convert FROM host byte order */
Packit Service ae04f2
		REVERSE64(context->bitcount,context->bitcount);
Packit Service ae04f2
#endif
Packit Service ae04f2
		if (usedspace > 0) {
Packit Service ae04f2
			/* Begin padding with a 1 bit: */
Packit Service ae04f2
			context->buffer[usedspace++] = 0x80;
Packit Service ae04f2
Packit Service ae04f2
			if (usedspace <= ISC_SHA256_SHORT_BLOCK_LENGTH) {
Packit Service ae04f2
				/* Set-up for the last transform: */
Packit Service ae04f2
				memset(&context->buffer[usedspace], 0,
Packit Service ae04f2
				       ISC_SHA256_SHORT_BLOCK_LENGTH - usedspace);
Packit Service ae04f2
			} else {
Packit Service ae04f2
				if (usedspace < ISC_SHA256_BLOCK_LENGTH) {
Packit Service ae04f2
					memset(&context->buffer[usedspace], 0,
Packit Service ae04f2
					       ISC_SHA256_BLOCK_LENGTH -
Packit Service ae04f2
					       usedspace);
Packit Service ae04f2
				}
Packit Service ae04f2
				/* Do second-to-last transform: */
Packit Service ae04f2
				isc_sha256_transform(context,
Packit Service ae04f2
					       (uint32_t*)context->buffer);
Packit Service ae04f2
Packit Service ae04f2
				/* And set-up for the last transform: */
Packit Service ae04f2
				memset(context->buffer, 0,
Packit Service ae04f2
				       ISC_SHA256_SHORT_BLOCK_LENGTH);
Packit Service ae04f2
			}
Packit Service ae04f2
		} else {
Packit Service ae04f2
			/* Set-up for the last transform: */
Packit Service ae04f2
			memset(context->buffer, 0, ISC_SHA256_SHORT_BLOCK_LENGTH);
Packit Service ae04f2
Packit Service ae04f2
			/* Begin padding with a 1 bit: */
Packit Service ae04f2
			*context->buffer = 0x80;
Packit Service ae04f2
		}
Packit Service ae04f2
		/* Set the bit count: */
Packit Service ae04f2
		*(uint64_t*)&context->buffer[ISC_SHA256_SHORT_BLOCK_LENGTH] = context->bitcount;
Packit Service ae04f2
Packit Service ae04f2
		/* Final transform: */
Packit Service ae04f2
		isc_sha256_transform(context, (uint32_t*)context->buffer);
Packit Service ae04f2
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
		{
Packit Service ae04f2
			/* Convert TO host byte order */
Packit Service ae04f2
			int	j;
Packit Service ae04f2
			for (j = 0; j < 8; j++) {
Packit Service ae04f2
				REVERSE32(context->state[j],context->state[j]);
Packit Service ae04f2
				*d++ = context->state[j];
Packit Service ae04f2
			}
Packit Service ae04f2
		}
Packit Service ae04f2
#else
Packit Service ae04f2
		memmove(d, context->state, ISC_SHA256_DIGESTLENGTH);
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Clean up state data: */
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
	usedspace = 0;
Packit Service ae04f2
	POST(usedspace);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-512: *********************************************************/
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_init(isc_sha512_t *context) {
Packit Service ae04f2
	if (context == (isc_sha512_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	memmove(context->state, sha512_initial_hash_value,
Packit Service ae04f2
		ISC_SHA512_DIGESTLENGTH);
Packit Service ae04f2
	memset(context->buffer, 0, ISC_SHA512_BLOCK_LENGTH);
Packit Service ae04f2
	context->bitcount[0] = context->bitcount[1] =  0;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_invalidate(isc_sha512_t *context) {
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#ifdef ISC_SHA2_UNROLL_TRANSFORM
Packit Service ae04f2
Packit Service ae04f2
/* Unrolled SHA-512 round macros: */
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
Packit Service ae04f2
#define ROUND512_0_TO_15(a,b,c,d,e,f,g,h)	\
Packit Service ae04f2
	REVERSE64(*data++, W512[j]); \
Packit Service ae04f2
	T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
Packit Service ae04f2
	     K512[j] + W512[j]; \
Packit Service ae04f2
	(d) += T1, \
Packit Service ae04f2
	(h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)), \
Packit Service ae04f2
	j++
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
#else /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
Packit Service ae04f2
#define ROUND512_0_TO_15(a,b,c,d,e,f,g,h)	\
Packit Service ae04f2
	T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + \
Packit Service ae04f2
	     K512[j] + (W512[j] = *data++); \
Packit Service ae04f2
	(d) += T1; \
Packit Service ae04f2
	(h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
Packit Service ae04f2
	j++
Packit Service ae04f2
Packit Service ae04f2
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
Packit Service ae04f2
#define ROUND512(a,b,c,d,e,f,g,h)	\
Packit Service ae04f2
	s0 = W512[(j+1)&0x0f]; \
Packit Service ae04f2
	s0 = sigma0_512(s0); \
Packit Service ae04f2
	s1 = W512[(j+14)&0x0f]; \
Packit Service ae04f2
	s1 = sigma1_512(s1); \
Packit Service ae04f2
	T1 = (h) + Sigma1_512(e) + Ch((e), (f), (g)) + K512[j] + \
Packit Service ae04f2
	     (W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0); \
Packit Service ae04f2
	(d) += T1; \
Packit Service ae04f2
	(h) = T1 + Sigma0_512(a) + Maj((a), (b), (c)); \
Packit Service ae04f2
	j++
Packit Service ae04f2
Packit Service ae04f2
void isc_sha512_transform(isc_sha512_t *context, const uint64_t* data) {
Packit Service ae04f2
	uint64_t	a, b, c, d, e, f, g, h, s0, s1;
Packit Service ae04f2
	uint64_t	T1, *W512 = (uint64_t*)context->buffer;
Packit Service ae04f2
	int		j;
Packit Service ae04f2
Packit Service ae04f2
	/* Initialize registers with the prev. intermediate value */
Packit Service ae04f2
	a = context->state[0];
Packit Service ae04f2
	b = context->state[1];
Packit Service ae04f2
	c = context->state[2];
Packit Service ae04f2
	d = context->state[3];
Packit Service ae04f2
	e = context->state[4];
Packit Service ae04f2
	f = context->state[5];
Packit Service ae04f2
	g = context->state[6];
Packit Service ae04f2
	h = context->state[7];
Packit Service ae04f2
Packit Service ae04f2
	j = 0;
Packit Service ae04f2
	do {
Packit Service ae04f2
		ROUND512_0_TO_15(a,b,c,d,e,f,g,h);
Packit Service ae04f2
		ROUND512_0_TO_15(h,a,b,c,d,e,f,g);
Packit Service ae04f2
		ROUND512_0_TO_15(g,h,a,b,c,d,e,f);
Packit Service ae04f2
		ROUND512_0_TO_15(f,g,h,a,b,c,d,e);
Packit Service ae04f2
		ROUND512_0_TO_15(e,f,g,h,a,b,c,d);
Packit Service ae04f2
		ROUND512_0_TO_15(d,e,f,g,h,a,b,c);
Packit Service ae04f2
		ROUND512_0_TO_15(c,d,e,f,g,h,a,b);
Packit Service ae04f2
		ROUND512_0_TO_15(b,c,d,e,f,g,h,a);
Packit Service ae04f2
	} while (j < 16);
Packit Service ae04f2
Packit Service ae04f2
	/* Now for the remaining rounds up to 79: */
Packit Service ae04f2
	do {
Packit Service ae04f2
		ROUND512(a,b,c,d,e,f,g,h);
Packit Service ae04f2
		ROUND512(h,a,b,c,d,e,f,g);
Packit Service ae04f2
		ROUND512(g,h,a,b,c,d,e,f);
Packit Service ae04f2
		ROUND512(f,g,h,a,b,c,d,e);
Packit Service ae04f2
		ROUND512(e,f,g,h,a,b,c,d);
Packit Service ae04f2
		ROUND512(d,e,f,g,h,a,b,c);
Packit Service ae04f2
		ROUND512(c,d,e,f,g,h,a,b);
Packit Service ae04f2
		ROUND512(b,c,d,e,f,g,h,a);
Packit Service ae04f2
	} while (j < 80);
Packit Service ae04f2
Packit Service ae04f2
	/* Compute the current intermediate hash value */
Packit Service ae04f2
	context->state[0] += a;
Packit Service ae04f2
	context->state[1] += b;
Packit Service ae04f2
	context->state[2] += c;
Packit Service ae04f2
	context->state[3] += d;
Packit Service ae04f2
	context->state[4] += e;
Packit Service ae04f2
	context->state[5] += f;
Packit Service ae04f2
	context->state[6] += g;
Packit Service ae04f2
	context->state[7] += h;
Packit Service ae04f2
Packit Service ae04f2
	/* Clean up */
Packit Service ae04f2
	a = b = c = d = e = f = g = h = T1 = 0;
Packit Service ae04f2
	/* Avoid compiler warnings */
Packit Service ae04f2
	POST(a); POST(b); POST(c); POST(d); POST(e); POST(f);
Packit Service ae04f2
	POST(g); POST(h); POST(T1);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#else /* ISC_SHA2_UNROLL_TRANSFORM */
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha512_transform(isc_sha512_t *context, const uint64_t* data) {
Packit Service ae04f2
	uint64_t	a, b, c, d, e, f, g, h, s0, s1;
Packit Service ae04f2
	uint64_t	T1, T2, *W512 = (uint64_t*)context->buffer;
Packit Service ae04f2
	int		j;
Packit Service ae04f2
Packit Service ae04f2
	/* Initialize registers with the prev. intermediate value */
Packit Service ae04f2
	a = context->state[0];
Packit Service ae04f2
	b = context->state[1];
Packit Service ae04f2
	c = context->state[2];
Packit Service ae04f2
	d = context->state[3];
Packit Service ae04f2
	e = context->state[4];
Packit Service ae04f2
	f = context->state[5];
Packit Service ae04f2
	g = context->state[6];
Packit Service ae04f2
	h = context->state[7];
Packit Service ae04f2
Packit Service ae04f2
	j = 0;
Packit Service ae04f2
	do {
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
		/* Convert TO host byte order */
Packit Service ae04f2
		REVERSE64(*data++, W512[j]);
Packit Service ae04f2
		/* Apply the SHA-512 compression function to update a..h */
Packit Service ae04f2
		T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + W512[j];
Packit Service ae04f2
#else /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
		/* Apply the SHA-512 compression function to update a..h with copy */
Packit Service ae04f2
		T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] + (W512[j] = *data++);
Packit Service ae04f2
#endif /* BYTE_ORDER == LITTLE_ENDIAN */
Packit Service ae04f2
		T2 = Sigma0_512(a) + Maj(a, b, c);
Packit Service ae04f2
		h = g;
Packit Service ae04f2
		g = f;
Packit Service ae04f2
		f = e;
Packit Service ae04f2
		e = d + T1;
Packit Service ae04f2
		d = c;
Packit Service ae04f2
		c = b;
Packit Service ae04f2
		b = a;
Packit Service ae04f2
		a = T1 + T2;
Packit Service ae04f2
Packit Service ae04f2
		j++;
Packit Service ae04f2
	} while (j < 16);
Packit Service ae04f2
Packit Service ae04f2
	do {
Packit Service ae04f2
		/* Part of the message block expansion: */
Packit Service ae04f2
		s0 = W512[(j+1)&0x0f];
Packit Service ae04f2
		s0 = sigma0_512(s0);
Packit Service ae04f2
		s1 = W512[(j+14)&0x0f];
Packit Service ae04f2
		s1 =  sigma1_512(s1);
Packit Service ae04f2
Packit Service ae04f2
		/* Apply the SHA-512 compression function to update a..h */
Packit Service ae04f2
		T1 = h + Sigma1_512(e) + Ch(e, f, g) + K512[j] +
Packit Service ae04f2
		     (W512[j&0x0f] += s1 + W512[(j+9)&0x0f] + s0);
Packit Service ae04f2
		T2 = Sigma0_512(a) + Maj(a, b, c);
Packit Service ae04f2
		h = g;
Packit Service ae04f2
		g = f;
Packit Service ae04f2
		f = e;
Packit Service ae04f2
		e = d + T1;
Packit Service ae04f2
		d = c;
Packit Service ae04f2
		c = b;
Packit Service ae04f2
		b = a;
Packit Service ae04f2
		a = T1 + T2;
Packit Service ae04f2
Packit Service ae04f2
		j++;
Packit Service ae04f2
	} while (j < 80);
Packit Service ae04f2
Packit Service ae04f2
	/* Compute the current intermediate hash value */
Packit Service ae04f2
	context->state[0] += a;
Packit Service ae04f2
	context->state[1] += b;
Packit Service ae04f2
	context->state[2] += c;
Packit Service ae04f2
	context->state[3] += d;
Packit Service ae04f2
	context->state[4] += e;
Packit Service ae04f2
	context->state[5] += f;
Packit Service ae04f2
	context->state[6] += g;
Packit Service ae04f2
	context->state[7] += h;
Packit Service ae04f2
Packit Service ae04f2
	/* Clean up */
Packit Service ae04f2
	a = b = c = d = e = f = g = h = T1 = T2 = 0;
Packit Service ae04f2
	/* Avoid compiler warnings */
Packit Service ae04f2
	POST(a); POST(b); POST(c); POST(d); POST(e); POST(f);
Packit Service ae04f2
	POST(g); POST(h); POST(T1); POST(T2);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
#endif /* ISC_SHA2_UNROLL_TRANSFORM */
Packit Service ae04f2
Packit Service ae04f2
void isc_sha512_update(isc_sha512_t *context, const uint8_t *data, size_t len) {
Packit Service ae04f2
	unsigned int	freespace, usedspace;
Packit Service ae04f2
Packit Service ae04f2
	if (len == 0U) {
Packit Service ae04f2
		/* Calling with no data is valid - we do nothing */
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0 && data != (uint8_t*)0);
Packit Service ae04f2
Packit Service ae04f2
	usedspace = (unsigned int)((context->bitcount[0] >> 3) %
Packit Service ae04f2
				   ISC_SHA512_BLOCK_LENGTH);
Packit Service ae04f2
	if (usedspace > 0) {
Packit Service ae04f2
		/* Calculate how much free space is available in the buffer */
Packit Service ae04f2
		freespace = ISC_SHA512_BLOCK_LENGTH - usedspace;
Packit Service ae04f2
Packit Service ae04f2
		if (len >= freespace) {
Packit Service ae04f2
			/* Fill the buffer completely and process it */
Packit Service ae04f2
			memmove(&context->buffer[usedspace], data, freespace);
Packit Service ae04f2
			ADDINC128(context->bitcount, freespace << 3);
Packit Service ae04f2
			len -= freespace;
Packit Service ae04f2
			data += freespace;
Packit Service ae04f2
			isc_sha512_transform(context,
Packit Service ae04f2
					     (uint64_t*)context->buffer);
Packit Service ae04f2
		} else {
Packit Service ae04f2
			/* The buffer is not yet full */
Packit Service ae04f2
			memmove(&context->buffer[usedspace], data, len);
Packit Service ae04f2
			ADDINC128(context->bitcount, len << 3);
Packit Service ae04f2
			/* Clean up: */
Packit Service ae04f2
			usedspace = freespace = 0;
Packit Service ae04f2
			/* Avoid compiler warnings: */
Packit Service ae04f2
			POST(usedspace); POST(freespace);
Packit Service ae04f2
			return;
Packit Service ae04f2
		}
Packit Service ae04f2
	}
Packit Service ae04f2
	while (len >= ISC_SHA512_BLOCK_LENGTH) {
Packit Service ae04f2
		/* Process as many complete blocks as we can */
Packit Service ae04f2
		memmove(context->buffer, data, ISC_SHA512_BLOCK_LENGTH);
Packit Service ae04f2
		isc_sha512_transform(context, (uint64_t*)context->buffer);
Packit Service ae04f2
		ADDINC128(context->bitcount, ISC_SHA512_BLOCK_LENGTH << 3);
Packit Service ae04f2
		len -= ISC_SHA512_BLOCK_LENGTH;
Packit Service ae04f2
		data += ISC_SHA512_BLOCK_LENGTH;
Packit Service ae04f2
	}
Packit Service ae04f2
	if (len > 0U) {
Packit Service ae04f2
		/* There's left-overs, so save 'em */
Packit Service ae04f2
		memmove(context->buffer, data, len);
Packit Service ae04f2
		ADDINC128(context->bitcount, len << 3);
Packit Service ae04f2
	}
Packit Service ae04f2
	/* Clean up: */
Packit Service ae04f2
	usedspace = freespace = 0;
Packit Service ae04f2
	/* Avoid compiler warnings: */
Packit Service ae04f2
	POST(usedspace); POST(freespace);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void isc_sha512_last(isc_sha512_t *context) {
Packit Service ae04f2
	unsigned int	usedspace;
Packit Service ae04f2
Packit Service ae04f2
	usedspace = (unsigned int)((context->bitcount[0] >> 3) %
Packit Service ae04f2
				    ISC_SHA512_BLOCK_LENGTH);
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
	/* Convert FROM host byte order */
Packit Service ae04f2
	REVERSE64(context->bitcount[0],context->bitcount[0]);
Packit Service ae04f2
	REVERSE64(context->bitcount[1],context->bitcount[1]);
Packit Service ae04f2
#endif
Packit Service ae04f2
	if (usedspace > 0) {
Packit Service ae04f2
		/* Begin padding with a 1 bit: */
Packit Service ae04f2
		context->buffer[usedspace++] = 0x80;
Packit Service ae04f2
Packit Service ae04f2
		if (usedspace <= ISC_SHA512_SHORT_BLOCK_LENGTH) {
Packit Service ae04f2
			/* Set-up for the last transform: */
Packit Service ae04f2
			memset(&context->buffer[usedspace], 0,
Packit Service ae04f2
			       ISC_SHA512_SHORT_BLOCK_LENGTH - usedspace);
Packit Service ae04f2
		} else {
Packit Service ae04f2
			if (usedspace < ISC_SHA512_BLOCK_LENGTH) {
Packit Service ae04f2
				memset(&context->buffer[usedspace], 0,
Packit Service ae04f2
				       ISC_SHA512_BLOCK_LENGTH - usedspace);
Packit Service ae04f2
			}
Packit Service ae04f2
			/* Do second-to-last transform: */
Packit Service ae04f2
			isc_sha512_transform(context,
Packit Service ae04f2
					    (uint64_t*)context->buffer);
Packit Service ae04f2
Packit Service ae04f2
			/* And set-up for the last transform: */
Packit Service ae04f2
			memset(context->buffer, 0, ISC_SHA512_BLOCK_LENGTH - 2);
Packit Service ae04f2
		}
Packit Service ae04f2
	} else {
Packit Service ae04f2
		/* Prepare for final transform: */
Packit Service ae04f2
		memset(context->buffer, 0, ISC_SHA512_SHORT_BLOCK_LENGTH);
Packit Service ae04f2
Packit Service ae04f2
		/* Begin padding with a 1 bit: */
Packit Service ae04f2
		*context->buffer = 0x80;
Packit Service ae04f2
	}
Packit Service ae04f2
	/* Store the length of input data (in bits): */
Packit Service ae04f2
	*(uint64_t*)&context->buffer[ISC_SHA512_SHORT_BLOCK_LENGTH] = context->bitcount[1];
Packit Service ae04f2
	*(uint64_t*)&context->buffer[ISC_SHA512_SHORT_BLOCK_LENGTH+8] = context->bitcount[0];
Packit Service ae04f2
Packit Service ae04f2
	/* Final transform: */
Packit Service ae04f2
	isc_sha512_transform(context, (uint64_t*)context->buffer);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void isc_sha512_final(uint8_t digest[], isc_sha512_t *context) {
Packit Service ae04f2
	uint64_t	*d = (uint64_t*)digest;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		isc_sha512_last(context);
Packit Service ae04f2
Packit Service ae04f2
		/* Save the hash data for output: */
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
		{
Packit Service ae04f2
			/* Convert TO host byte order */
Packit Service ae04f2
			int	j;
Packit Service ae04f2
			for (j = 0; j < 8; j++) {
Packit Service ae04f2
				REVERSE64(context->state[j],context->state[j]);
Packit Service ae04f2
				*d++ = context->state[j];
Packit Service ae04f2
			}
Packit Service ae04f2
		}
Packit Service ae04f2
#else
Packit Service ae04f2
		memmove(d, context->state, ISC_SHA512_DIGESTLENGTH);
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Zero out state data */
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
Packit Service ae04f2
/*** SHA-384: *********************************************************/
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_init(isc_sha384_t *context) {
Packit Service ae04f2
	if (context == (isc_sha384_t *)0) {
Packit Service ae04f2
		return;
Packit Service ae04f2
	}
Packit Service ae04f2
	memmove(context->state, sha384_initial_hash_value,
Packit Service ae04f2
		ISC_SHA512_DIGESTLENGTH);
Packit Service ae04f2
	memset(context->buffer, 0, ISC_SHA384_BLOCK_LENGTH);
Packit Service ae04f2
	context->bitcount[0] = context->bitcount[1] = 0;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_invalidate(isc_sha384_t *context) {
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_update(isc_sha384_t *context, const uint8_t* data, size_t len) {
Packit Service ae04f2
	isc_sha512_update((isc_sha512_t *)context, data, len);
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
void
Packit Service ae04f2
isc_sha384_final(uint8_t digest[], isc_sha384_t *context) {
Packit Service ae04f2
	uint64_t	*d = (uint64_t*)digest;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha384_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	/* If no digest buffer is passed, we don't bother doing this: */
Packit Service ae04f2
	if (digest != (uint8_t*)0) {
Packit Service ae04f2
		isc_sha512_last((isc_sha512_t *)context);
Packit Service ae04f2
Packit Service ae04f2
		/* Save the hash data for output: */
Packit Service ae04f2
#if BYTE_ORDER == LITTLE_ENDIAN
Packit Service ae04f2
		{
Packit Service ae04f2
			/* Convert TO host byte order */
Packit Service ae04f2
			int	j;
Packit Service ae04f2
			for (j = 0; j < 6; j++) {
Packit Service ae04f2
				REVERSE64(context->state[j],context->state[j]);
Packit Service ae04f2
				*d++ = context->state[j];
Packit Service ae04f2
			}
Packit Service ae04f2
		}
Packit Service ae04f2
#else
Packit Service ae04f2
		memmove(d, context->state, ISC_SHA384_DIGESTLENGTH);
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
Packit Service ae04f2
	/* Zero out state data */
Packit Service ae04f2
	isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
}
Packit Service ae04f2
#endif /* !ISC_PLATFORM_OPENSSLHASH */
Packit Service ae04f2
Packit Service ae04f2
/*
Packit Service ae04f2
 * Constant used by SHA256/384/512_End() functions for converting the
Packit Service ae04f2
 * digest to a readable hexadecimal character string:
Packit Service ae04f2
 */
Packit Service ae04f2
static const char *sha2_hex_digits = "0123456789abcdef";
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha224_end(isc_sha224_t *context, char buffer[]) {
Packit Service ae04f2
	uint8_t	digest[ISC_SHA224_DIGESTLENGTH], *d = digest;
Packit Service ae04f2
	unsigned int	i;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha224_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	if (buffer != (char*)0) {
Packit Service ae04f2
		isc_sha224_final(digest, context);
Packit Service ae04f2
Packit Service ae04f2
		for (i = 0; i < ISC_SHA224_DIGESTLENGTH; i++) {
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[(*d & 0xf0) >> 4];
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[*d & 0x0f];
Packit Service ae04f2
			d++;
Packit Service ae04f2
		}
Packit Service ae04f2
		*buffer = (char)0;
Packit Service ae04f2
	} else {
Packit Service ae04f2
#if defined(ISC_PLATFORM_OPENSSLHASH) && !defined(LIBRESSL_VERSION_NUMBER)
Packit Service ae04f2
		EVP_MD_CTX_reset(context->ctx);
Packit Service ae04f2
#elif PKCS11CRYPTO
Packit Service ae04f2
		pk11_return_session(context);
Packit Service ae04f2
#else
Packit Service ae04f2
		isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
	isc_safe_memwipe(digest, sizeof(digest));
Packit Service ae04f2
	return buffer;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha224_data(const uint8_t *data, size_t len,
Packit Service ae04f2
		char digest[ISC_SHA224_DIGESTSTRINGLENGTH])
Packit Service ae04f2
{
Packit Service ae04f2
	isc_sha224_t context;
Packit Service ae04f2
Packit Service ae04f2
	isc_sha224_init(&context);
Packit Service ae04f2
	isc_sha224_update(&context, data, len);
Packit Service ae04f2
	return (isc_sha224_end(&context, digest));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha256_end(isc_sha256_t *context, char buffer[]) {
Packit Service ae04f2
	uint8_t	digest[ISC_SHA256_DIGESTLENGTH], *d = digest;
Packit Service ae04f2
	unsigned int	i;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha256_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	if (buffer != (char*)0) {
Packit Service ae04f2
		isc_sha256_final(digest, context);
Packit Service ae04f2
Packit Service ae04f2
		for (i = 0; i < ISC_SHA256_DIGESTLENGTH; i++) {
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[(*d & 0xf0) >> 4];
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[*d & 0x0f];
Packit Service ae04f2
			d++;
Packit Service ae04f2
		}
Packit Service ae04f2
		*buffer = (char)0;
Packit Service ae04f2
	} else {
Packit Service ae04f2
#if defined(ISC_PLATFORM_OPENSSLHASH) && !defined(LIBRESSL_VERSION_NUMBER)
Packit Service ae04f2
		EVP_MD_CTX_reset(context->ctx);
Packit Service ae04f2
#elif PKCS11CRYPTO
Packit Service ae04f2
		pk11_return_session(context);
Packit Service ae04f2
#else
Packit Service ae04f2
		isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
	isc_safe_memwipe(digest, sizeof(digest));
Packit Service ae04f2
	return buffer;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha256_data(const uint8_t* data, size_t len,
Packit Service ae04f2
		char digest[ISC_SHA256_DIGESTSTRINGLENGTH])
Packit Service ae04f2
{
Packit Service ae04f2
	isc_sha256_t context;
Packit Service ae04f2
Packit Service ae04f2
	isc_sha256_init(&context);
Packit Service ae04f2
	isc_sha256_update(&context, data, len);
Packit Service ae04f2
	return (isc_sha256_end(&context, digest));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha512_end(isc_sha512_t *context, char buffer[]) {
Packit Service ae04f2
	uint8_t	digest[ISC_SHA512_DIGESTLENGTH], *d = digest;
Packit Service ae04f2
	unsigned int	i;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha512_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	if (buffer != (char*)0) {
Packit Service ae04f2
		isc_sha512_final(digest, context);
Packit Service ae04f2
Packit Service ae04f2
		for (i = 0; i < ISC_SHA512_DIGESTLENGTH; i++) {
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[(*d & 0xf0) >> 4];
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[*d & 0x0f];
Packit Service ae04f2
			d++;
Packit Service ae04f2
		}
Packit Service ae04f2
		*buffer = (char)0;
Packit Service ae04f2
	} else {
Packit Service ae04f2
#if defined(ISC_PLATFORM_OPENSSLHASH) && !defined(LIBRESSL_VERSION_NUMBER)
Packit Service ae04f2
		EVP_MD_CTX_reset(context->ctx);
Packit Service ae04f2
#elif PKCS11CRYPTO
Packit Service ae04f2
		pk11_return_session(context);
Packit Service ae04f2
#else
Packit Service ae04f2
		isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
	isc_safe_memwipe(digest, sizeof(digest));
Packit Service ae04f2
	return buffer;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha512_data(const uint8_t *data, size_t len,
Packit Service ae04f2
		char digest[ISC_SHA512_DIGESTSTRINGLENGTH])
Packit Service ae04f2
{
Packit Service ae04f2
	isc_sha512_t 	context;
Packit Service ae04f2
Packit Service ae04f2
	isc_sha512_init(&context);
Packit Service ae04f2
	isc_sha512_update(&context, data, len);
Packit Service ae04f2
	return (isc_sha512_end(&context, digest));
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha384_end(isc_sha384_t *context, char buffer[]) {
Packit Service ae04f2
	uint8_t	digest[ISC_SHA384_DIGESTLENGTH], *d = digest;
Packit Service ae04f2
	unsigned int	i;
Packit Service ae04f2
Packit Service ae04f2
	/* Sanity check: */
Packit Service ae04f2
	REQUIRE(context != (isc_sha384_t *)0);
Packit Service ae04f2
Packit Service ae04f2
	if (buffer != (char*)0) {
Packit Service ae04f2
		isc_sha384_final(digest, context);
Packit Service ae04f2
Packit Service ae04f2
		for (i = 0; i < ISC_SHA384_DIGESTLENGTH; i++) {
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[(*d & 0xf0) >> 4];
Packit Service ae04f2
			*buffer++ = sha2_hex_digits[*d & 0x0f];
Packit Service ae04f2
			d++;
Packit Service ae04f2
		}
Packit Service ae04f2
		*buffer = (char)0;
Packit Service ae04f2
	} else {
Packit Service ae04f2
#if defined(ISC_PLATFORM_OPENSSLHASH) && !defined(LIBRESSL_VERSION_NUMBER)
Packit Service ae04f2
		EVP_MD_CTX_reset(context->ctx);
Packit Service ae04f2
#elif PKCS11CRYPTO
Packit Service ae04f2
		pk11_return_session(context);
Packit Service ae04f2
#else
Packit Service ae04f2
		isc_safe_memwipe(context, sizeof(*context));
Packit Service ae04f2
#endif
Packit Service ae04f2
	}
Packit Service ae04f2
	isc_safe_memwipe(digest, sizeof(digest));
Packit Service ae04f2
	return buffer;
Packit Service ae04f2
}
Packit Service ae04f2
Packit Service ae04f2
char *
Packit Service ae04f2
isc_sha384_data(const uint8_t *data, size_t len,
Packit Service ae04f2
		char digest[ISC_SHA384_DIGESTSTRINGLENGTH])
Packit Service ae04f2
{
Packit Service ae04f2
	isc_sha384_t context;
Packit Service ae04f2
Packit Service ae04f2
	isc_sha384_init(&context);
Packit Service ae04f2
	isc_sha384_update(&context, data, len);
Packit Service ae04f2
	return (isc_sha384_end(&context, digest));
Packit Service ae04f2
}