artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f34e85a
)
Fix a typo in dump_exp_results()
author
tb
<tb@openbsd.org>
Sun, 26 Mar 2023 19:01:59 +0000
(19:01 +0000)
committer
tb
<tb@openbsd.org>
Sun, 26 Mar 2023 19:01:59 +0000
(19:01 +0000)
regress/lib/libcrypto/bn/bn_mod_exp.c
patch
|
blob
|
history
diff --git
a/regress/lib/libcrypto/bn/bn_mod_exp.c
b/regress/lib/libcrypto/bn/bn_mod_exp.c
index
2fafb04
..
b9adadb
100644
(file)
--- a/
regress/lib/libcrypto/bn/bn_mod_exp.c
+++ b/
regress/lib/libcrypto/bn/bn_mod_exp.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: bn_mod_exp.c,v 1.2
0 2023/03/26 19:01:15
tb Exp $ */
+/* $OpenBSD: bn_mod_exp.c,v 1.2
1 2023/03/26 19:01:59
tb Exp $ */
/*
* Copyright (c) 2022,2023 Theo Buehler <tb@openbsd.org>
@@
-354,7
+354,7
@@
dump_exp_results(const BIGNUM *a, const BIGNUM *p, const BIGNUM *m,
printf("\na: ");
BN_print_fp(stdout, a);
- printf("\n
b
: ");
+ printf("\n
p
: ");
BN_print_fp(stdout, p);
printf("\nm: ");
BN_print_fp(stdout, m);