sync with OpenBSD -current

This commit is contained in:
purplerain 2023-12-31 21:02:40 +00:00
parent 72a51d0b15
commit f437ff84be
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
15 changed files with 633 additions and 114 deletions

View file

@ -1,4 +1,4 @@
/* $OpenBSD: e_chacha20poly1305.c,v 1.33 2023/12/15 13:48:59 tb Exp $ */
/* $OpenBSD: e_chacha20poly1305.c,v 1.34 2023/12/30 18:24:09 tb Exp $ */
/*
* Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
@ -345,7 +345,7 @@ static const EVP_AEAD aead_chacha20_poly1305 = {
};
const EVP_AEAD *
EVP_aead_chacha20_poly1305()
EVP_aead_chacha20_poly1305(void)
{
return &aead_chacha20_poly1305;
}
@ -363,7 +363,7 @@ static const EVP_AEAD aead_xchacha20_poly1305 = {
};
const EVP_AEAD *
EVP_aead_xchacha20_poly1305()
EVP_aead_xchacha20_poly1305(void)
{
return &aead_xchacha20_poly1305;
}