summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/modes/ctr128.c
diff options
context:
space:
mode:
authorjsing <>2025-04-21 16:00:14 +0000
committerjsing <>2025-04-21 16:00:14 +0000
commit8033e0b834d2176bdec65b9f9dac5c9e14a3a6b7 (patch)
treeeaa1255cb1380bb4b596d5a81de0622020701c2c /src/lib/libcrypto/modes/ctr128.c
parent1c0efc8280713824e8dcbf6ffff13ab3e175a292 (diff)
downloadopenbsd-8033e0b834d2176bdec65b9f9dac5c9e14a3a6b7.tar.gz
openbsd-8033e0b834d2176bdec65b9f9dac5c9e14a3a6b7.tar.bz2
openbsd-8033e0b834d2176bdec65b9f9dac5c9e14a3a6b7.zip
Fix another #include that was hiding.
Diffstat (limited to 'src/lib/libcrypto/modes/ctr128.c')
-rw-r--r--src/lib/libcrypto/modes/ctr128.c4
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. */