diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/modes/ccm128.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/lib/libcrypto/modes/ccm128.c b/src/lib/libcrypto/modes/ccm128.c index 68c5cce5da..0f592dd9e5 100644 --- a/src/lib/libcrypto/modes/ccm128.c +++ b/src/lib/libcrypto/modes/ccm128.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ccm128.c,v 1.8 2023/07/08 14:56:54 beck Exp $ */ | 1 | /* $OpenBSD: ccm128.c,v 1.10 2025/04/21 16:01:18 jsing Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright (c) 2011 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 2011 The OpenSSL Project. All rights reserved. |
4 | * | 4 | * |
@@ -48,15 +48,11 @@ | |||
48 | * ==================================================================== | 48 | * ==================================================================== |
49 | */ | 49 | */ |
50 | 50 | ||
51 | #include <openssl/crypto.h> | ||
52 | #include "modes_local.h" | ||
53 | #include <string.h> | 51 | #include <string.h> |
54 | 52 | ||
55 | #ifndef MODES_DEBUG | 53 | #include <openssl/crypto.h> |
56 | # ifndef NDEBUG | 54 | |
57 | # define NDEBUG | 55 | #include "modes_local.h" |
58 | # endif | ||
59 | #endif | ||
60 | 56 | ||
61 | /* First you setup M and L parameters and pass the key schedule. | 57 | /* First you setup M and L parameters and pass the key schedule. |
62 | * This is called once per session setup... */ | 58 | * This is called once per session setup... */ |