openssl/providers/implementations/include/prov
наб 6d1e730a1e Implement BLAKE2s with the same macro as BLAKE2b
This avoids code duplication and provides variable-size support
for BLAKE2s like 786b9a8

Test data obtained with libb2 with the following programs:

	==> b2.c <==
	#include <blake2.h>
	#include <unistd.h>

	int main() {
		char buf[16] = {};
		blake2s(buf, 0, 0, 16, 0, 0);
		write(1, buf, 16);
	}

	==> b3.c <==
	#include <blake2.h>
	#include <unistd.h>

	int main() {
		char buf[10] = {};
		blake2s(buf, "\x61", 0, 10, 1, 0);
		write(1, buf, 10);
	}

Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22444)
2023-11-08 09:42:13 +01:00
..
__DECC_INCLUDE_EPILOGUE.H
__DECC_INCLUDE_PROLOGUE.H
blake2.h Implement BLAKE2s with the same macro as BLAKE2b 2023-11-08 09:42:13 +01:00
ciphercommon_aead.h Add dupctx support to aead ciphers 2023-09-12 15:59:11 +02:00
ciphercommon_ccm.h
ciphercommon_gcm.h Avoid another copy of key schedule pointer in PROV_GCM_CTX 2023-10-16 12:12:36 +02:00
ciphercommon.h update/final: Return error if key is not set 2023-11-03 13:36:13 +01:00
digestcommon.h
ecx.h
hmac_drbg.h Implement deterministic ECDSA sign (RFC6979) 2022-11-30 07:31:53 +00:00
implementations.h Copyright year updates 2023-09-07 09:59:15 +01:00
kdfexchange.h Copyright year updates 2023-09-07 09:59:15 +01:00
macsignature.h Copyright year updates 2023-09-07 09:59:15 +01:00
md5_sha1.h
names.h Copyright year updates 2023-09-07 09:59:15 +01:00
seeding.h rand: remove the ossl_rand_pool_add_additional_data() function. 2022-10-27 09:23:00 +11:00