diff options
author | jsing <> | 2023-04-17 12:36:59 +0000 |
---|---|---|
committer | jsing <> | 2023-04-17 12:36:59 +0000 |
commit | 173299c275f8ec3b396fc3083aed23b52a2c4827 (patch) | |
tree | 37b6bf70554e9fd288af5d18560b8513389fa0d2 /src/lib | |
parent | 0e625a2f8a9b7894e07548dc5fcd238659a7da1d (diff) | |
download | openbsd-173299c275f8ec3b396fc3083aed23b52a2c4827.tar.gz openbsd-173299c275f8ec3b396fc3083aed23b52a2c4827.tar.bz2 openbsd-173299c275f8ec3b396fc3083aed23b52a2c4827.zip |
Move BN_bn2mpi()/BN_mpi2bn() into bn_convert.c
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/Makefile | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/bn/bn_convert.c | 74 | ||||
-rw-r--r-- | src/lib/libcrypto/bn/bn_mpi.c | 135 |
3 files changed, 74 insertions, 138 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile index 2026360212..d2cc11244e 100644 --- a/src/lib/libcrypto/Makefile +++ b/src/lib/libcrypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.105 2023/04/17 05:54:20 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.106 2023/04/17 12:36:59 jsing Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -195,7 +195,6 @@ SRCS+= bn_lib.c | |||
195 | SRCS+= bn_mod.c | 195 | SRCS+= bn_mod.c |
196 | SRCS+= bn_mod_sqrt.c | 196 | SRCS+= bn_mod_sqrt.c |
197 | SRCS+= bn_mont.c | 197 | SRCS+= bn_mont.c |
198 | SRCS+= bn_mpi.c | ||
199 | SRCS+= bn_mul.c | 198 | SRCS+= bn_mul.c |
200 | SRCS+= bn_nist.c | 199 | SRCS+= bn_nist.c |
201 | SRCS+= bn_prime.c | 200 | SRCS+= bn_prime.c |
diff --git a/src/lib/libcrypto/bn/bn_convert.c b/src/lib/libcrypto/bn/bn_convert.c index 2d15b29893..ab6c7924f1 100644 --- a/src/lib/libcrypto/bn/bn_convert.c +++ b/src/lib/libcrypto/bn/bn_convert.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: bn_convert.c,v 1.1 2023/04/14 11:10:11 jsing Exp $ */ | 1 | /* $OpenBSD: bn_convert.c,v 1.2 2023/04/17 12:36:59 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 | * |
@@ -351,6 +351,78 @@ BN_asc2bn(BIGNUM **bn, const char *a) | |||
351 | return 1; | 351 | return 1; |
352 | } | 352 | } |
353 | 353 | ||
354 | int | ||
355 | BN_bn2mpi(const BIGNUM *a, unsigned char *d) | ||
356 | { | ||
357 | int bits; | ||
358 | int num = 0; | ||
359 | int ext = 0; | ||
360 | long l; | ||
361 | |||
362 | bits = BN_num_bits(a); | ||
363 | num = (bits + 7) / 8; | ||
364 | if (bits > 0) { | ||
365 | ext = ((bits & 0x07) == 0); | ||
366 | } | ||
367 | if (d == NULL) | ||
368 | return (num + 4 + ext); | ||
369 | |||
370 | l = num + ext; | ||
371 | d[0] = (unsigned char)(l >> 24) & 0xff; | ||
372 | d[1] = (unsigned char)(l >> 16) & 0xff; | ||
373 | d[2] = (unsigned char)(l >> 8) & 0xff; | ||
374 | d[3] = (unsigned char)(l) & 0xff; | ||
375 | if (ext) | ||
376 | d[4] = 0; | ||
377 | num = BN_bn2bin(a, &(d[4 + ext])); | ||
378 | if (a->neg) | ||
379 | d[4] |= 0x80; | ||
380 | return (num + 4 + ext); | ||
381 | } | ||
382 | |||
383 | BIGNUM * | ||
384 | BN_mpi2bn(const unsigned char *d, int n, BIGNUM *ain) | ||
385 | { | ||
386 | BIGNUM *a = ain; | ||
387 | long len; | ||
388 | int neg = 0; | ||
389 | |||
390 | if (n < 4) { | ||
391 | BNerror(BN_R_INVALID_LENGTH); | ||
392 | return (NULL); | ||
393 | } | ||
394 | len = ((long)d[0] << 24) | ((long)d[1] << 16) | ((int)d[2] << 8) | | ||
395 | (int)d[3]; | ||
396 | if ((len + 4) != n) { | ||
397 | BNerror(BN_R_ENCODING_ERROR); | ||
398 | return (NULL); | ||
399 | } | ||
400 | |||
401 | if (a == NULL) | ||
402 | a = BN_new(); | ||
403 | if (a == NULL) | ||
404 | return (NULL); | ||
405 | |||
406 | if (len == 0) { | ||
407 | a->neg = 0; | ||
408 | a->top = 0; | ||
409 | return (a); | ||
410 | } | ||
411 | d += 4; | ||
412 | if ((*d) & 0x80) | ||
413 | neg = 1; | ||
414 | if (BN_bin2bn(d, (int)len, a) == NULL) { | ||
415 | if (ain == NULL) | ||
416 | BN_free(a); | ||
417 | return (NULL); | ||
418 | } | ||
419 | BN_set_negative(a, neg); | ||
420 | if (neg) { | ||
421 | BN_clear_bit(a, BN_num_bits(a) - 1); | ||
422 | } | ||
423 | return (a); | ||
424 | } | ||
425 | |||
354 | #ifndef OPENSSL_NO_BIO | 426 | #ifndef OPENSSL_NO_BIO |
355 | int | 427 | int |
356 | BN_print_fp(FILE *fp, const BIGNUM *a) | 428 | BN_print_fp(FILE *fp, const BIGNUM *a) |
diff --git a/src/lib/libcrypto/bn/bn_mpi.c b/src/lib/libcrypto/bn/bn_mpi.c deleted file mode 100644 index e3b9ba0dd9..0000000000 --- a/src/lib/libcrypto/bn/bn_mpi.c +++ /dev/null | |||
@@ -1,135 +0,0 @@ | |||
1 | /* $OpenBSD: bn_mpi.c,v 1.12 2023/02/13 04:25:37 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 | #include <stdio.h> | ||
60 | |||
61 | #include <openssl/err.h> | ||
62 | |||
63 | #include "bn_local.h" | ||
64 | |||
65 | int | ||
66 | BN_bn2mpi(const BIGNUM *a, unsigned char *d) | ||
67 | { | ||
68 | int bits; | ||
69 | int num = 0; | ||
70 | int ext = 0; | ||
71 | long l; | ||
72 | |||
73 | bits = BN_num_bits(a); | ||
74 | num = (bits + 7) / 8; | ||
75 | if (bits > 0) { | ||
76 | ext = ((bits & 0x07) == 0); | ||
77 | } | ||
78 | if (d == NULL) | ||
79 | return (num + 4 + ext); | ||
80 | |||
81 | l = num + ext; | ||
82 | d[0] = (unsigned char)(l >> 24) & 0xff; | ||
83 | d[1] = (unsigned char)(l >> 16) & 0xff; | ||
84 | d[2] = (unsigned char)(l >> 8) & 0xff; | ||
85 | d[3] = (unsigned char)(l) & 0xff; | ||
86 | if (ext) | ||
87 | d[4] = 0; | ||
88 | num = BN_bn2bin(a, &(d[4 + ext])); | ||
89 | if (a->neg) | ||
90 | d[4] |= 0x80; | ||
91 | return (num + 4 + ext); | ||
92 | } | ||
93 | |||
94 | BIGNUM * | ||
95 | BN_mpi2bn(const unsigned char *d, int n, BIGNUM *ain) | ||
96 | { | ||
97 | BIGNUM *a = ain; | ||
98 | long len; | ||
99 | int neg = 0; | ||
100 | |||
101 | if (n < 4) { | ||
102 | BNerror(BN_R_INVALID_LENGTH); | ||
103 | return (NULL); | ||
104 | } | ||
105 | len = ((long)d[0] << 24) | ((long)d[1] << 16) | ((int)d[2] << 8) | | ||
106 | (int)d[3]; | ||
107 | if ((len + 4) != n) { | ||
108 | BNerror(BN_R_ENCODING_ERROR); | ||
109 | return (NULL); | ||
110 | } | ||
111 | |||
112 | if (a == NULL) | ||
113 | a = BN_new(); | ||
114 | if (a == NULL) | ||
115 | return (NULL); | ||
116 | |||
117 | if (len == 0) { | ||
118 | a->neg = 0; | ||
119 | a->top = 0; | ||
120 | return (a); | ||
121 | } | ||
122 | d += 4; | ||
123 | if ((*d) & 0x80) | ||
124 | neg = 1; | ||
125 | if (BN_bin2bn(d, (int)len, a) == NULL) { | ||
126 | if (ain == NULL) | ||
127 | BN_free(a); | ||
128 | return (NULL); | ||
129 | } | ||
130 | BN_set_negative(a, neg); | ||
131 | if (neg) { | ||
132 | BN_clear_bit(a, BN_num_bits(a) - 1); | ||
133 | } | ||
134 | return (a); | ||
135 | } | ||