diff options
author | jsing <> | 2023-08-10 11:06:36 +0000 |
---|---|---|
committer | jsing <> | 2023-08-10 11:06:36 +0000 |
commit | da2b70213ef5e51becce23dac0c73dc5f11f2ad5 (patch) | |
tree | ccd329169440232f76932a7e14a5f066e9f30b35 | |
parent | f6e99d3e9a37d3bed7122d2f97eee891c310d170 (diff) | |
download | openbsd-da2b70213ef5e51becce23dac0c73dc5f11f2ad5.tar.gz openbsd-da2b70213ef5e51becce23dac0c73dc5f11f2ad5.tar.bz2 openbsd-da2b70213ef5e51becce23dac0c73dc5f11f2ad5.zip |
Inline the remaining 10 lines from rmdconst.h.
Discussed with tb@
-rw-r--r-- | src/lib/libcrypto/ripemd/ripemd.c | 14 | ||||
-rw-r--r-- | src/lib/libcrypto/ripemd/rmdconst.h | 73 |
2 files changed, 12 insertions, 75 deletions
diff --git a/src/lib/libcrypto/ripemd/ripemd.c b/src/lib/libcrypto/ripemd/ripemd.c index 24b5986576..e22afe8e11 100644 --- a/src/lib/libcrypto/ripemd/ripemd.c +++ b/src/lib/libcrypto/ripemd/ripemd.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ripemd.c,v 1.5 2023/08/10 11:04:30 jsing Exp $ */ | 1 | /* $OpenBSD: ripemd.c,v 1.6 2023/08/10 11:06:36 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -125,7 +125,17 @@ __END_HIDDEN_DECLS | |||
125 | #define RIPEMD160_D 0x10325476L | 125 | #define RIPEMD160_D 0x10325476L |
126 | #define RIPEMD160_E 0xC3D2E1F0L | 126 | #define RIPEMD160_E 0xC3D2E1F0L |
127 | 127 | ||
128 | #include "rmdconst.h" | 128 | #define KL0 0x00000000L |
129 | #define KL1 0x5A827999L | ||
130 | #define KL2 0x6ED9EBA1L | ||
131 | #define KL3 0x8F1BBCDCL | ||
132 | #define KL4 0xA953FD4EL | ||
133 | |||
134 | #define KR0 0x50A28BE6L | ||
135 | #define KR1 0x5C4DD124L | ||
136 | #define KR2 0x6D703EF3L | ||
137 | #define KR3 0x7A6D76E9L | ||
138 | #define KR4 0x00000000L | ||
129 | 139 | ||
130 | #define RIP1(a,b,c,d,e,w,s) { \ | 140 | #define RIP1(a,b,c,d,e,w,s) { \ |
131 | a+=F1(b,c,d)+w; \ | 141 | a+=F1(b,c,d)+w; \ |
diff --git a/src/lib/libcrypto/ripemd/rmdconst.h b/src/lib/libcrypto/ripemd/rmdconst.h deleted file mode 100644 index febd522b2c..0000000000 --- a/src/lib/libcrypto/ripemd/rmdconst.h +++ /dev/null | |||
@@ -1,73 +0,0 @@ | |||
1 | /* $OpenBSD: rmdconst.h,v 1.6 2023/08/10 11:04:30 jsing Exp $ */ | ||
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
3 | * All rights reserved. | ||
4 | * | ||
5 | * This package is an SSL implementation written | ||
6 | * by Eric Young (eay@cryptsoft.com). | ||
7 | * The implementation was written so as to conform with Netscapes SSL. | ||
8 | * | ||
9 | * This library is free for commercial and non-commercial use as long as | ||
10 | * the following conditions are aheared to. The following conditions | ||
11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
13 | * included with this distribution is covered by the same copyright terms | ||
14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
15 | * | ||
16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
17 | * the code are not to be removed. | ||
18 | * If this package is used in a product, Eric Young should be given attribution | ||
19 | * as the author of the parts of the library used. | ||
20 | * This can be in the form of a textual message at program startup or | ||
21 | * in documentation (online or textual) provided with the package. | ||
22 | * | ||
23 | * Redistribution and use in source and binary forms, with or without | ||
24 | * modification, are permitted provided that the following conditions | ||
25 | * are met: | ||
26 | * 1. Redistributions of source code must retain the copyright | ||
27 | * notice, this list of conditions and the following disclaimer. | ||
28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
29 | * notice, this list of conditions and the following disclaimer in the | ||
30 | * documentation and/or other materials provided with the distribution. | ||
31 | * 3. All advertising materials mentioning features or use of this software | ||
32 | * must display the following acknowledgement: | ||
33 | * "This product includes cryptographic software written by | ||
34 | * Eric Young (eay@cryptsoft.com)" | ||
35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
36 | * being used are not cryptographic related :-). | ||
37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
38 | * the apps directory (application code) you must include an acknowledgement: | ||
39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
40 | * | ||
41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
51 | * SUCH DAMAGE. | ||
52 | * | ||
53 | * The licence and distribution terms for any publically available version or | ||
54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
55 | * copied and put under another distribution licence | ||
56 | * [including the GNU Public Licence.] | ||
57 | */ | ||
58 | |||
59 | __BEGIN_HIDDEN_DECLS | ||
60 | |||
61 | #define KL0 0x00000000L | ||
62 | #define KL1 0x5A827999L | ||
63 | #define KL2 0x6ED9EBA1L | ||
64 | #define KL3 0x8F1BBCDCL | ||
65 | #define KL4 0xA953FD4EL | ||
66 | |||
67 | #define KR0 0x50A28BE6L | ||
68 | #define KR1 0x5C4DD124L | ||
69 | #define KR2 0x6D703EF3L | ||
70 | #define KR3 0x7A6D76E9L | ||
71 | #define KR4 0x00000000L | ||
72 | |||
73 | __END_HIDDEN_DECLS | ||