diff options
Diffstat (limited to 'src/lib/libcrypto/man')
-rw-r--r-- | src/lib/libcrypto/man/bn_dump.3 | 74 |
1 files changed, 2 insertions, 72 deletions
diff --git a/src/lib/libcrypto/man/bn_dump.3 b/src/lib/libcrypto/man/bn_dump.3 index 36ae660785..cfe707b775 100644 --- a/src/lib/libcrypto/man/bn_dump.3 +++ b/src/lib/libcrypto/man/bn_dump.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: bn_dump.3,v 1.7 2022/11/22 19:00:15 schwarze Exp $ | 1 | .\" $OpenBSD: bn_dump.3,v 1.8 2023/01/20 12:16:46 jsing Exp $ |
2 | .\" full merge up to: | 2 | .\" full merge up to: |
3 | .\" OpenSSL crypto/bn/README.pod aebb9aac Jul 19 09:27:53 2016 -0400 | 3 | .\" OpenSSL crypto/bn/README.pod aebb9aac Jul 19 09:27:53 2016 -0400 |
4 | .\" | 4 | .\" |
@@ -50,7 +50,7 @@ | |||
50 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | 50 | .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED |
51 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. | 51 | .\" OF THE POSSIBILITY OF SUCH DAMAGE. |
52 | .\" | 52 | .\" |
53 | .Dd $Mdocdate: November 22 2022 $ | 53 | .Dd $Mdocdate: January 20 2023 $ |
54 | .Dt BN_DUMP 3 | 54 | .Dt BN_DUMP 3 |
55 | .Os | 55 | .Os |
56 | .Sh NAME | 56 | .Sh NAME |
@@ -66,11 +66,8 @@ | |||
66 | .Nm bn_sqr_comba8 , | 66 | .Nm bn_sqr_comba8 , |
67 | .Nm bn_cmp_words , | 67 | .Nm bn_cmp_words , |
68 | .Nm bn_mul_normal , | 68 | .Nm bn_mul_normal , |
69 | .Nm bn_mul_low_normal , | ||
70 | .Nm bn_mul_recursive , | 69 | .Nm bn_mul_recursive , |
71 | .Nm bn_mul_part_recursive , | 70 | .Nm bn_mul_part_recursive , |
72 | .Nm bn_mul_low_recursive , | ||
73 | .Nm bn_mul_high , | ||
74 | .Nm bn_sqr_normal , | 71 | .Nm bn_sqr_normal , |
75 | .Nm bn_sqr_recursive , | 72 | .Nm bn_sqr_recursive , |
76 | .Nm bn_expand , | 73 | .Nm bn_expand , |
@@ -166,13 +163,6 @@ | |||
166 | .Fa "int nb" | 163 | .Fa "int nb" |
167 | .Fc | 164 | .Fc |
168 | .Ft void | 165 | .Ft void |
169 | .Fo bn_mul_low_normal | ||
170 | .Fa "BN_ULONG *r" | ||
171 | .Fa "BN_ULONG *a" | ||
172 | .Fa "BN_ULONG *b" | ||
173 | .Fa "int n" | ||
174 | .Fc | ||
175 | .Ft void | ||
176 | .Fo bn_mul_recursive | 166 | .Fo bn_mul_recursive |
177 | .Fa "BN_ULONG *r" | 167 | .Fa "BN_ULONG *r" |
178 | .Fa "BN_ULONG *a" | 168 | .Fa "BN_ULONG *a" |
@@ -193,23 +183,6 @@ | |||
193 | .Fa "BN_ULONG *tmp" | 183 | .Fa "BN_ULONG *tmp" |
194 | .Fc | 184 | .Fc |
195 | .Ft void | 185 | .Ft void |
196 | .Fo bn_mul_low_recursive | ||
197 | .Fa "BN_ULONG *r" | ||
198 | .Fa "BN_ULONG *a" | ||
199 | .Fa "BN_ULONG *b" | ||
200 | .Fa "int n2" | ||
201 | .Fa "BN_ULONG *tmp" | ||
202 | .Fc | ||
203 | .Ft void | ||
204 | .Fo bn_mul_high | ||
205 | .Fa "BN_ULONG *r" | ||
206 | .Fa "BN_ULONG *a" | ||
207 | .Fa "BN_ULONG *b" | ||
208 | .Fa "BN_ULONG *l" | ||
209 | .Fa "int n2" | ||
210 | .Fa "BN_ULONG *tmp" | ||
211 | .Fc | ||
212 | .Ft void | ||
213 | .Fo bn_sqr_normal | 186 | .Fo bn_sqr_normal |
214 | .Fa "BN_ULONG *r" | 187 | .Fa "BN_ULONG *r" |
215 | .Fa "BN_ULONG *a" | 188 | .Fa "BN_ULONG *a" |
@@ -545,21 +518,6 @@ It computes | |||
545 | and places the result in | 518 | and places the result in |
546 | .Fa r . | 519 | .Fa r . |
547 | .Pp | 520 | .Pp |
548 | .Fn bn_mul_low_normal r a b n | ||
549 | operates on the | ||
550 | .Fa n | ||
551 | word arrays | ||
552 | .Fa r , | ||
553 | .Fa a | ||
554 | and | ||
555 | .Fa b . | ||
556 | It computes the | ||
557 | .Fa n | ||
558 | low words of | ||
559 | .Fa a Ns * Ns Fa b | ||
560 | and places the result in | ||
561 | .Fa r . | ||
562 | .Pp | ||
563 | .Fn bn_mul_recursive r a b n2 dna dnb t | 521 | .Fn bn_mul_recursive r a b n2 dna dnb t |
564 | operates on the word arrays | 522 | operates on the word arrays |
565 | .Fa a | 523 | .Fa a |
@@ -601,34 +559,6 @@ word arrays | |||
601 | and | 559 | and |
602 | .Fa tmp . | 560 | .Fa tmp . |
603 | .Pp | 561 | .Pp |
604 | .Fn bn_mul_low_recursive r a b n2 tmp | ||
605 | operates on the | ||
606 | .Fa n2 | ||
607 | word arrays | ||
608 | .Fa r | ||
609 | and | ||
610 | .Fa tmp | ||
611 | and the | ||
612 | .Fa n2 Ns /2 | ||
613 | word arrays | ||
614 | .Fa a | ||
615 | and | ||
616 | .Fa b . | ||
617 | .Pp | ||
618 | .Fn bn_mul_high r a b l n2 tmp | ||
619 | operates on the | ||
620 | .Fa n2 | ||
621 | word arrays | ||
622 | .Fa r , | ||
623 | .Fa a , | ||
624 | .Fa b | ||
625 | and | ||
626 | .Fa l | ||
627 | (?) and the | ||
628 | .Pf 3* Fa n2 | ||
629 | word array | ||
630 | .Fa tmp . | ||
631 | .Pp | ||
632 | .Xr BN_mul 3 | 562 | .Xr BN_mul 3 |
633 | calls | 563 | calls |
634 | .Fn bn_mul_normal , | 564 | .Fn bn_mul_normal , |