summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-12-30 18:24:09 +0000
committertb <>2023-12-30 18:24:09 +0000
commit4c4f3bc8ce76bae155c4f1dfe311d3444e35b3ec (patch)
treeffb8df4a4c6412099cd1bdb65892eddf9262334d /src
parentafcd249d2a1ffea8e61833d3a73c87dce2a84831 (diff)
downloadopenbsd-4c4f3bc8ce76bae155c4f1dfe311d3444e35b3ec.tar.gz
openbsd-4c4f3bc8ce76bae155c4f1dfe311d3444e35b3ec.tar.bz2
openbsd-4c4f3bc8ce76bae155c4f1dfe311d3444e35b3ec.zip
Some Australians don't like voids either
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/evp/e_chacha20poly1305.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/evp/e_chacha20poly1305.c b/src/lib/libcrypto/evp/e_chacha20poly1305.c
index 362e68dc99..796824aeeb 100644
--- a/src/lib/libcrypto/evp/e_chacha20poly1305.c
+++ b/src/lib/libcrypto/evp/e_chacha20poly1305.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: e_chacha20poly1305.c,v 1.33 2023/12/15 13:48:59 tb Exp $ */ 1/* $OpenBSD: e_chacha20poly1305.c,v 1.34 2023/12/30 18:24:09 tb Exp $ */
2 2
3/* 3/*
4 * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> 4 * Copyright (c) 2022 Joel Sing <jsing@openbsd.org>
@@ -345,7 +345,7 @@ static const EVP_AEAD aead_chacha20_poly1305 = {
345}; 345};
346 346
347const EVP_AEAD * 347const EVP_AEAD *
348EVP_aead_chacha20_poly1305() 348EVP_aead_chacha20_poly1305(void)
349{ 349{
350 return &aead_chacha20_poly1305; 350 return &aead_chacha20_poly1305;
351} 351}
@@ -363,7 +363,7 @@ static const EVP_AEAD aead_xchacha20_poly1305 = {
363}; 363};
364 364
365const EVP_AEAD * 365const EVP_AEAD *
366EVP_aead_xchacha20_poly1305() 366EVP_aead_xchacha20_poly1305(void)
367{ 367{
368 return &aead_xchacha20_poly1305; 368 return &aead_xchacha20_poly1305;
369} 369}