summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorjsing <>2024-03-27 06:38:54 +0000
committerjsing <>2024-03-27 06:38:54 +0000
commitea0e3d9c499d48e936db83343e739d3b045a280f (patch)
treec157ce5647a56e263bbb07d50798360c7c4ed865 /src/lib
parent1ee3138cad92e0b5297c8976525a4b97af1d6823 (diff)
downloadopenbsd-ea0e3d9c499d48e936db83343e739d3b045a280f.tar.gz
openbsd-ea0e3d9c499d48e936db83343e739d3b045a280f.tar.bz2
openbsd-ea0e3d9c499d48e936db83343e739d3b045a280f.zip
Tidy includes and a comment.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/aes/aes_core.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/lib/libcrypto/aes/aes_core.c b/src/lib/libcrypto/aes/aes_core.c
index e3fdb4fd5e..06e85e8d49 100644
--- a/src/lib/libcrypto/aes/aes_core.c
+++ b/src/lib/libcrypto/aes/aes_core.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: aes_core.c,v 1.14 2022/11/26 16:08:50 tb Exp $ */ 1/* $OpenBSD: aes_core.c,v 1.15 2024/03/27 06:38:54 jsing Exp $ */
2/** 2/**
3 * rijndael-alg-fst.c 3 * rijndael-alg-fst.c
4 * 4 *
@@ -25,8 +25,10 @@
25 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28/* Note: rewritten a little bit to provide error control and an OpenSSL- 28/*
29 compatible API */ 29 * Note: rewritten a little bit to provide error control and an OpenSSL-
30 * compatible API.
31 */
30 32
31#ifndef AES_DEBUG 33#ifndef AES_DEBUG
32# ifndef NDEBUG 34# ifndef NDEBUG
@@ -35,7 +37,9 @@
35#endif 37#endif
36 38
37#include <stdlib.h> 39#include <stdlib.h>
40
38#include <openssl/aes.h> 41#include <openssl/aes.h>
42
39#include "aes_local.h" 43#include "aes_local.h"
40 44
41#ifndef AES_ASM 45#ifndef AES_ASM