summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorjsing <>2024-03-28 12:52:58 +0000
committerjsing <>2024-03-28 12:52:58 +0000
commit160c61a34bd287854cf967205877adf7a0b5b7c0 (patch)
treea6778cbc84eea86eed062108ab72df9aca9bb92c /src/lib
parent9526f0e84f7b8a3a41429b30c7af10d4b135319a (diff)
downloadopenbsd-160c61a34bd287854cf967205877adf7a0b5b7c0.tar.gz
openbsd-160c61a34bd287854cf967205877adf7a0b5b7c0.tar.bz2
openbsd-160c61a34bd287854cf967205877adf7a0b5b7c0.zip
Merge aes_cbc.c into aes.c now that aes_cbc.c is used on all platforms.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/Makefile3
-rw-r--r--src/lib/libcrypto/aes/aes.c27
-rw-r--r--src/lib/libcrypto/aes/aes_cbc.c78
-rw-r--r--src/lib/libcrypto/arch/aarch64/Makefile.inc4
-rw-r--r--src/lib/libcrypto/arch/alpha/Makefile.inc4
-rw-r--r--src/lib/libcrypto/arch/amd64/Makefile.inc3
-rw-r--r--src/lib/libcrypto/arch/arm/Makefile.inc1
-rw-r--r--src/lib/libcrypto/arch/hppa/Makefile.inc4
-rw-r--r--src/lib/libcrypto/arch/i386/Makefile.inc3
-rw-r--r--src/lib/libcrypto/arch/mips64/Makefile.inc3
-rw-r--r--src/lib/libcrypto/arch/powerpc/Makefile.inc4
-rw-r--r--src/lib/libcrypto/arch/powerpc64/Makefile.inc4
-rw-r--r--src/lib/libcrypto/arch/riscv64/Makefile.inc3
-rw-r--r--src/lib/libcrypto/arch/sparc64/Makefile.inc4
14 files changed, 43 insertions, 102 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 06af0eee92..918454e7a4 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.184 2024/03/28 06:45:36 beck Exp $ 1# $OpenBSD: Makefile,v 1.185 2024/03/28 12:52:58 jsing Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -789,7 +789,6 @@ obj_dat.h: obj_mac.h ${SSL_OBJECTS}/obj_dat.pl
789.else 789.else
790CFLAGS+=-DOPENSSL_NO_ASM 790CFLAGS+=-DOPENSSL_NO_ASM
791SRCS+= aes_core.c 791SRCS+= aes_core.c
792SRCS+= aes_cbc.c
793SRCS+= camellia.c 792SRCS+= camellia.c
794SRCS+= cmll_cbc.c 793SRCS+= cmll_cbc.c
795SRCS+= cmll_misc.c 794SRCS+= cmll_misc.c
diff --git a/src/lib/libcrypto/aes/aes.c b/src/lib/libcrypto/aes/aes.c
index d3bf85947d..9b25a21f4c 100644
--- a/src/lib/libcrypto/aes/aes.c
+++ b/src/lib/libcrypto/aes/aes.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: aes.c,v 1.1 2024/03/28 00:57:26 jsing Exp $ */ 1/* $OpenBSD: aes.c,v 1.2 2024/03/28 12:52:58 jsing Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 2002-2006 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -59,6 +59,31 @@ static const unsigned char aes_wrap_default_iv[] = {
59 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 59 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6, 0xA6,
60}; 60};
61 61
62#ifdef HAVE_AES_CBC_ENCRYPT_INTERNAL
63void aes_cbc_encrypt_internal(const unsigned char *in, unsigned char *out,
64 size_t len, const AES_KEY *key, unsigned char *ivec, const int enc);
65
66#else
67static inline void
68aes_cbc_encrypt_internal(const unsigned char *in, unsigned char *out,
69 size_t len, const AES_KEY *key, unsigned char *ivec, const int enc)
70{
71 if (enc)
72 CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
73 (block128_f)AES_encrypt);
74 else
75 CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
76 (block128_f)AES_decrypt);
77}
78#endif
79
80void
81AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
82 size_t len, const AES_KEY *key, unsigned char *ivec, const int enc)
83{
84 aes_cbc_encrypt_internal(in, out, len, key, ivec, enc);
85}
86
62/* 87/*
63 * The input and output encrypted as though 128bit cfb mode is being 88 * The input and output encrypted as though 128bit cfb mode is being
64 * used. The extra state information to record how much of the 89 * used. The extra state information to record how much of the
diff --git a/src/lib/libcrypto/aes/aes_cbc.c b/src/lib/libcrypto/aes/aes_cbc.c
deleted file mode 100644
index f578be9901..0000000000
--- a/src/lib/libcrypto/aes/aes_cbc.c
+++ /dev/null
@@ -1,78 +0,0 @@
1/* $OpenBSD: aes_cbc.c,v 1.13 2024/03/28 12:28:48 jsing Exp $ */
2/* ====================================================================
3 * Copyright (c) 1998-2002 The OpenSSL Project. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * 3. All advertising materials mentioning features or use of this
18 * software must display the following acknowledgment:
19 * "This product includes software developed by the OpenSSL Project
20 * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
21 *
22 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
23 * endorse or promote products derived from this software without
24 * prior written permission. For written permission, please contact
25 * openssl-core@openssl.org.
26 *
27 * 5. Products derived from this software may not be called "OpenSSL"
28 * nor may "OpenSSL" appear in their names without prior written
29 * permission of the OpenSSL Project.
30 *
31 * 6. Redistributions of any form whatsoever must retain the following
32 * acknowledgment:
33 * "This product includes software developed by the OpenSSL Project
34 * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
35 *
36 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
37 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
38 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
39 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
40 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
42 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
43 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
44 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
45 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
47 * OF THE POSSIBILITY OF SUCH DAMAGE.
48 * ====================================================================
49 *
50 */
51
52#include <openssl/aes.h>
53#include <openssl/modes.h>
54
55#ifdef HAVE_AES_CBC_ENCRYPT_INTERNAL
56void aes_cbc_encrypt_internal(const unsigned char *in, unsigned char *out,
57 size_t len, const AES_KEY *key, unsigned char *ivec, const int enc);
58
59#else
60static inline void
61aes_cbc_encrypt_internal(const unsigned char *in, unsigned char *out,
62 size_t len, const AES_KEY *key, unsigned char *ivec, const int enc)
63{
64 if (enc)
65 CRYPTO_cbc128_encrypt(in, out, len, key, ivec,
66 (block128_f)AES_encrypt);
67 else
68 CRYPTO_cbc128_decrypt(in, out, len, key, ivec,
69 (block128_f)AES_decrypt);
70}
71#endif
72
73void
74AES_cbc_encrypt(const unsigned char *in, unsigned char *out,
75 size_t len, const AES_KEY *key, unsigned char *ivec, const int enc)
76{
77 aes_cbc_encrypt_internal(in, out, len, key, ivec, enc);
78}
diff --git a/src/lib/libcrypto/arch/aarch64/Makefile.inc b/src/lib/libcrypto/arch/aarch64/Makefile.inc
index d9ab7789bb..6f57fa230f 100644
--- a/src/lib/libcrypto/arch/aarch64/Makefile.inc
+++ b/src/lib/libcrypto/arch/aarch64/Makefile.inc
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.9 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.10 2024/03/28 12:52:58 jsing Exp $
2 2
3# aarch64-specific libcrypto build rules 3# aarch64-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c aes_cbc.c 6SRCS+= aes_core.c
7# bn 7# bn
8# camellia 8# camellia
9SRCS+= camellia.c cmll_cbc.c cmll_misc.c 9SRCS+= camellia.c cmll_cbc.c cmll_misc.c
diff --git a/src/lib/libcrypto/arch/alpha/Makefile.inc b/src/lib/libcrypto/arch/alpha/Makefile.inc
index 2a3bf263b1..ac8314563c 100644
--- a/src/lib/libcrypto/arch/alpha/Makefile.inc
+++ b/src/lib/libcrypto/arch/alpha/Makefile.inc
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.10 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.11 2024/03/28 12:52:58 jsing Exp $
2 2
3# alpha-specific libcrypto build rules 3# alpha-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c aes_cbc.c 6SRCS+= aes_core.c
7# bn 7# bn
8SSLASM+= bn alpha-mont 8SSLASM+= bn alpha-mont
9CFLAGS+= -DOPENSSL_BN_ASM_MONT 9CFLAGS+= -DOPENSSL_BN_ASM_MONT
diff --git a/src/lib/libcrypto/arch/amd64/Makefile.inc b/src/lib/libcrypto/arch/amd64/Makefile.inc
index 13d2c0b1be..2dcf64d045 100644
--- a/src/lib/libcrypto/arch/amd64/Makefile.inc
+++ b/src/lib/libcrypto/arch/amd64/Makefile.inc
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile.inc,v 1.19 2024/03/28 12:28:48 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.20 2024/03/28 12:52:58 jsing Exp $
2 2
3# amd64-specific libcrypto build rules 3# amd64-specific libcrypto build rules
4 4
@@ -14,7 +14,6 @@ CFLAGS+= -DVPAES_ASM
14SSLASM+= aes vpaes-x86_64 14SSLASM+= aes vpaes-x86_64
15SSLASM+= aes aesni-x86_64 15SSLASM+= aes aesni-x86_64
16CFLAGS+= -DHAVE_AES_CBC_ENCRYPT_INTERNAL 16CFLAGS+= -DHAVE_AES_CBC_ENCRYPT_INTERNAL
17SRCS+= aes_cbc.c
18# bn 17# bn
19CFLAGS+= -DOPENSSL_IA32_SSE2 18CFLAGS+= -DOPENSSL_IA32_SSE2
20CFLAGS+= -DRSA_ASM 19CFLAGS+= -DRSA_ASM
diff --git a/src/lib/libcrypto/arch/arm/Makefile.inc b/src/lib/libcrypto/arch/arm/Makefile.inc
index 443fe9e647..b0d125572c 100644
--- a/src/lib/libcrypto/arch/arm/Makefile.inc
+++ b/src/lib/libcrypto/arch/arm/Makefile.inc
@@ -3,7 +3,6 @@
3# arm-specific libcrypto build rules 3# arm-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_cbc.c
7CFLAGS+= -DAES_ASM 6CFLAGS+= -DAES_ASM
8SSLASM+= aes aes-armv4 7SSLASM+= aes aes-armv4
9# bn 8# bn
diff --git a/src/lib/libcrypto/arch/hppa/Makefile.inc b/src/lib/libcrypto/arch/hppa/Makefile.inc
index 84128559ce..bbe4c9ac1e 100644
--- a/src/lib/libcrypto/arch/hppa/Makefile.inc
+++ b/src/lib/libcrypto/arch/hppa/Makefile.inc
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.19 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.20 2024/03/28 12:52:58 jsing Exp $
2 2
3# hppa-specific libcrypto build rules 3# hppa-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c aes_cbc.c 6SRCS+= aes_core.c
7CFLAGS+= -DAES_ASM 7CFLAGS+= -DAES_ASM
8SSLASM+= aes aes-parisc aes-parisc 8SSLASM+= aes aes-parisc aes-parisc
9# bn 9# bn
diff --git a/src/lib/libcrypto/arch/i386/Makefile.inc b/src/lib/libcrypto/arch/i386/Makefile.inc
index cd356eeea5..5741bc6f3b 100644
--- a/src/lib/libcrypto/arch/i386/Makefile.inc
+++ b/src/lib/libcrypto/arch/i386/Makefile.inc
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile.inc,v 1.16 2024/03/28 12:28:48 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.17 2024/03/28 12:52:58 jsing Exp $
2 2
3# i386-specific libcrypto build rules 3# i386-specific libcrypto build rules
4 4
@@ -12,7 +12,6 @@ CFLAGS+= -DVPAES_ASM
12SSLASM+= aes vpaes-x86 12SSLASM+= aes vpaes-x86
13SSLASM+= aes aesni-x86 13SSLASM+= aes aesni-x86
14CFLAGS+= -DHAVE_AES_CBC_ENCRYPT_INTERNAL 14CFLAGS+= -DHAVE_AES_CBC_ENCRYPT_INTERNAL
15SRCS+= aes_cbc.c
16# bn 15# bn
17CFLAGS+= -DOPENSSL_IA32_SSE2 16CFLAGS+= -DOPENSSL_IA32_SSE2
18SSLASM+= bn bn-586 17SSLASM+= bn bn-586
diff --git a/src/lib/libcrypto/arch/mips64/Makefile.inc b/src/lib/libcrypto/arch/mips64/Makefile.inc
index b3a9406f40..d40bbdf00e 100644
--- a/src/lib/libcrypto/arch/mips64/Makefile.inc
+++ b/src/lib/libcrypto/arch/mips64/Makefile.inc
@@ -1,9 +1,8 @@
1# $OpenBSD: Makefile.inc,v 1.11 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.12 2024/03/28 12:52:58 jsing Exp $
2 2
3# mips64-specific libcrypto build rules 3# mips64-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_cbc.c
7CFLAGS+= -DAES_ASM 6CFLAGS+= -DAES_ASM
8SSLASM+= aes aes-mips aes-mips 7SSLASM+= aes aes-mips aes-mips
9# bn 8# bn
diff --git a/src/lib/libcrypto/arch/powerpc/Makefile.inc b/src/lib/libcrypto/arch/powerpc/Makefile.inc
index 9011d0b5e9..9e3a2f7280 100644
--- a/src/lib/libcrypto/arch/powerpc/Makefile.inc
+++ b/src/lib/libcrypto/arch/powerpc/Makefile.inc
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.8 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.9 2024/03/28 12:52:58 jsing Exp $
2 2
3# powerpc-specific libcrypto build rules 3# powerpc-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c aes_cbc.c 6SRCS+= aes_core.c
7# slower than C code 7# slower than C code
8#CFLAGS+= -DAES_ASM 8#CFLAGS+= -DAES_ASM
9#SSLASM+= aes aes-ppc aes-ppc 9#SSLASM+= aes aes-ppc aes-ppc
diff --git a/src/lib/libcrypto/arch/powerpc64/Makefile.inc b/src/lib/libcrypto/arch/powerpc64/Makefile.inc
index f45bb013e3..ea466bb8a3 100644
--- a/src/lib/libcrypto/arch/powerpc64/Makefile.inc
+++ b/src/lib/libcrypto/arch/powerpc64/Makefile.inc
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.10 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.11 2024/03/28 12:52:58 jsing Exp $
2 2
3# powerpc-specific libcrypto build rules 3# powerpc-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c aes_cbc.c 6SRCS+= aes_core.c
7# slower than C code 7# slower than C code
8#CFLAGS+= -DAES_ASM 8#CFLAGS+= -DAES_ASM
9#SSLASM+= aes aes-ppc aes-ppc 9#SSLASM+= aes aes-ppc aes-ppc
diff --git a/src/lib/libcrypto/arch/riscv64/Makefile.inc b/src/lib/libcrypto/arch/riscv64/Makefile.inc
index 909cc21829..0737d3ce11 100644
--- a/src/lib/libcrypto/arch/riscv64/Makefile.inc
+++ b/src/lib/libcrypto/arch/riscv64/Makefile.inc
@@ -1,10 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.6 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.7 2024/03/28 12:52:58 jsing Exp $
2 2
3# riscv64 libcrypto build rules 3# riscv64 libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c 6SRCS+= aes_core.c
7SRCS+= aes_cbc.c
8 7
9# camellia 8# camellia
10SRCS+= camellia.c 9SRCS+= camellia.c
diff --git a/src/lib/libcrypto/arch/sparc64/Makefile.inc b/src/lib/libcrypto/arch/sparc64/Makefile.inc
index b34a66e226..e540fcbbba 100644
--- a/src/lib/libcrypto/arch/sparc64/Makefile.inc
+++ b/src/lib/libcrypto/arch/sparc64/Makefile.inc
@@ -1,9 +1,9 @@
1# $OpenBSD: Makefile.inc,v 1.13 2024/03/28 01:57:00 jsing Exp $ 1# $OpenBSD: Makefile.inc,v 1.14 2024/03/28 12:52:58 jsing Exp $
2 2
3# sparc64-specific libcrypto build rules 3# sparc64-specific libcrypto build rules
4 4
5# aes 5# aes
6SRCS+= aes_core.c aes_cbc.c 6SRCS+= aes_core.c
7CFLAGS+= -DAES_ASM 7CFLAGS+= -DAES_ASM
8SSLASM+= aes aes-sparcv9 aes-sparcv9 8SSLASM+= aes aes-sparcv9 aes-sparcv9
9# bn 9# bn