diff options
| author | tb <> | 2025-05-10 05:54:39 +0000 |
|---|---|---|
| committer | tb <> | 2025-05-10 05:54:39 +0000 |
| commit | 41e8f99dd1625a9f0c80ce9d4383e95b18e85709 (patch) | |
| tree | 70b02845e44482dbe558f0dc5d503c5d977aa73d /src/lib/libcrypto/evp/e_chacha20poly1305.c | |
| parent | f1cb2042ed58c0f2125c881f6786e4e3580203e7 (diff) | |
| download | openbsd-41e8f99dd1625a9f0c80ce9d4383e95b18e85709.tar.gz openbsd-41e8f99dd1625a9f0c80ce9d4383e95b18e85709.tar.bz2 openbsd-41e8f99dd1625a9f0c80ce9d4383e95b18e85709.zip | |
Use err_local.h rather than err.h in most places
ok jsing
Diffstat (limited to 'src/lib/libcrypto/evp/e_chacha20poly1305.c')
| -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 |
