diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-03 21:20:50 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2018-04-03 21:20:50 +0000 |
commit | ade4870613ec7134009eb0f218687195f66ec377 (patch) | |
tree | ad9ae948c1d3507c8e2919372dd0e6c895450222 /lib/libcrypto/man | |
parent | bb9c25eaa1514ebd5b5b2324f3ecfb09612657c8 (diff) |
Typo: typdef -> typedef.
From Edgar Pettijohn
Diffstat (limited to 'lib/libcrypto/man')
-rw-r--r-- | lib/libcrypto/man/RSA_new.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/man/RSA_new.3 b/lib/libcrypto/man/RSA_new.3 index 3808ad3b5d3..d995ce12343 100644 --- a/lib/libcrypto/man/RSA_new.3 +++ b/lib/libcrypto/man/RSA_new.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: RSA_new.3,v 1.8 2018/03/27 17:35:50 schwarze Exp $ +.\" $OpenBSD: RSA_new.3,v 1.9 2018/04/03 21:20:49 tb Exp $ .\" OpenSSL doc/man3/RSA_new.pod 99d63d46 Oct 26 13:56:48 2016 -0400 .\" OpenSSL doc/crypto/rsa.pod 35d2e327 Jun 3 16:19:49 2016 -0400 .\" @@ -49,7 +49,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: March 27 2018 $ +.Dd $Mdocdate: April 3 2018 $ .Dt RSA_NEW 3 .Os .Sh NAME @@ -93,7 +93,7 @@ structure consists of several components. It can contain public as well as private RSA keys: .Bd -literal -typdef struct { +typedef struct { BIGNUM *n; // public modulus BIGNUM *e; // public exponent BIGNUM *d; // private exponent |