diff options
-rw-r--r-- | src/regress/lib/libcrypto/aead/aeadtest.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libcrypto/aead/aeadtest.c b/src/regress/lib/libcrypto/aead/aeadtest.c index 50072de0e9..a6a2673320 100644 --- a/src/regress/lib/libcrypto/aead/aeadtest.c +++ b/src/regress/lib/libcrypto/aead/aeadtest.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aeadtest.c,v 1.16 2022/07/30 14:24:33 jsing Exp $ */ | 1 | /* $OpenBSD: aeadtest.c,v 1.17 2022/07/30 14:49:15 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014, Google Inc. | 3 | * Copyright (c) 2014, Google Inc. |
4 | * | 4 | * |
@@ -15,15 +15,15 @@ | |||
15 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #include <ctype.h> | ||
19 | #include <stdint.h> | ||
18 | #include <stdio.h> | 20 | #include <stdio.h> |
19 | #include <stdlib.h> | 21 | #include <stdlib.h> |
20 | #include <string.h> | 22 | #include <string.h> |
21 | #include <stdint.h> | ||
22 | #include <unistd.h> | 23 | #include <unistd.h> |
23 | #include <ctype.h> | ||
24 | 24 | ||
25 | #include <openssl/evp.h> | ||
26 | #include <openssl/err.h> | 25 | #include <openssl/err.h> |
26 | #include <openssl/evp.h> | ||
27 | 27 | ||
28 | /* | 28 | /* |
29 | * This program tests an AEAD against a series of test vectors from a file. The | 29 | * This program tests an AEAD against a series of test vectors from a file. The |