sync with OpenBSD -current
This commit is contained in:
parent
72a51d0b15
commit
f437ff84be
15 changed files with 633 additions and 114 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue