diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/evp/e_chacha20poly1305.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/evp/e_chacha20poly1305.c b/src/lib/libcrypto/evp/e_chacha20poly1305.c index d176569f90..d3a1e44875 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.37 2024/12/20 20:05:29 schwarze Exp $ */ | 1 | /* $OpenBSD: e_chacha20poly1305.c,v 1.38 2025/05/10 05:54:38 tb Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> | 4 | * Copyright (c) 2022 Joel Sing <jsing@openbsd.org> |
@@ -26,12 +26,12 @@ | |||
26 | 26 | ||
27 | #if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) | 27 | #if !defined(OPENSSL_NO_CHACHA) && !defined(OPENSSL_NO_POLY1305) |
28 | 28 | ||
29 | #include <openssl/err.h> | ||
30 | #include <openssl/evp.h> | 29 | #include <openssl/evp.h> |
31 | #include <openssl/chacha.h> | 30 | #include <openssl/chacha.h> |
32 | #include <openssl/poly1305.h> | 31 | #include <openssl/poly1305.h> |
33 | 32 | ||
34 | #include "bytestring.h" | 33 | #include "bytestring.h" |
34 | #include "err_local.h" | ||
35 | #include "evp_local.h" | 35 | #include "evp_local.h" |
36 | 36 | ||
37 | #define POLY1305_TAG_LEN 16 | 37 | #define POLY1305_TAG_LEN 16 |