artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5161c7c
)
Convert openssl(1) rsa.c for opaque RSA
author
tb
<tb@openbsd.org>
Fri, 14 Jan 2022 09:26:41 +0000
(09:26 +0000)
committer
tb
<tb@openbsd.org>
Fri, 14 Jan 2022 09:26:41 +0000
(09:26 +0000)
ok inoguchi jsing
usr.bin/openssl/rsa.c
patch
|
blob
|
history
diff --git
a/usr.bin/openssl/rsa.c
b/usr.bin/openssl/rsa.c
index
0d331f6
..
acc05ee
100644
(file)
--- a/
usr.bin/openssl/rsa.c
+++ b/
usr.bin/openssl/rsa.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: rsa.c,v 1.1
5 2021/11/26 16:23:27
tb Exp $ */
+/* $OpenBSD: rsa.c,v 1.1
6 2022/01/14 09:26:41
tb Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@
-328,7
+328,7
@@
rsa_main(int argc, char **argv)
}
if (rsa_config.modulus) {
BIO_printf(out, "Modulus=");
- BN_print(out,
rsa->n
);
+ BN_print(out,
RSA_get0_n(rsa)
);
BIO_printf(out, "\n");
}
if (rsa_config.check) {