diff options
| author | jsing <> | 2025-04-21 16:00:14 +0000 |
|---|---|---|
| committer | jsing <> | 2025-04-21 16:00:14 +0000 |
| commit | 05b7edb67d9af9d6bfe2513a0cf4453362507d4b (patch) | |
| tree | eaa1255cb1380bb4b596d5a81de0622020701c2c /src | |
| parent | 85b498da9a877baf3b4ec6026a21d73f02886d5e (diff) | |
| download | openbsd-05b7edb67d9af9d6bfe2513a0cf4453362507d4b.tar.gz openbsd-05b7edb67d9af9d6bfe2513a0cf4453362507d4b.tar.bz2 openbsd-05b7edb67d9af9d6bfe2513a0cf4453362507d4b.zip | |
Fix another #include that was hiding.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libcrypto/modes/ctr128.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/modes/ctr128.c b/src/lib/libcrypto/modes/ctr128.c index 0eff5b7296..37bc68a598 100644 --- a/src/lib/libcrypto/modes/ctr128.c +++ b/src/lib/libcrypto/modes/ctr128.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: ctr128.c,v 1.12 2025/04/21 15:54:32 jsing Exp $ */ | 1 | /* $OpenBSD: ctr128.c,v 1.13 2025/04/21 16:00:14 jsing Exp $ */ |
| 2 | /* ==================================================================== | 2 | /* ==================================================================== |
| 3 | * Copyright (c) 2008 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2008 The OpenSSL Project. All rights reserved. |
| 4 | * | 4 | * |
| @@ -49,6 +49,7 @@ | |||
| 49 | * | 49 | * |
| 50 | */ | 50 | */ |
| 51 | 51 | ||
| 52 | #include <assert.h> | ||
| 52 | #include <string.h> | 53 | #include <string.h> |
| 53 | 54 | ||
| 54 | #include <openssl/crypto.h> | 55 | #include <openssl/crypto.h> |
| @@ -60,7 +61,6 @@ | |||
| 60 | # define NDEBUG | 61 | # define NDEBUG |
| 61 | # endif | 62 | # endif |
| 62 | #endif | 63 | #endif |
| 63 | #include <assert.h> | ||
| 64 | 64 | ||
| 65 | /* NOTE: the IV/counter CTR mode is big-endian. The code itself | 65 | /* NOTE: the IV/counter CTR mode is big-endian. The code itself |
| 66 | * is endian-neutral. */ | 66 | * is endian-neutral. */ |
