summaryrefslogtreecommitdiffstats
path: root/secure/usr.bin
diff options
context:
space:
mode:
authornectar <nectar@FreeBSD.org>2003-02-10 19:57:56 +0000
committernectar <nectar@FreeBSD.org>2003-02-10 19:57:56 +0000
commitb36647ffe0b4c7db913b64382b29be7953f7dfa4 (patch)
tree4aff87bb2998fd6e0b9415d7e9964bea45904b96 /secure/usr.bin
parentba1743e91bea2d716235e6ab42a5492659b6c7e6 (diff)
downloadFreeBSD-src-b36647ffe0b4c7db913b64382b29be7953f7dfa4.zip
FreeBSD-src-b36647ffe0b4c7db913b64382b29be7953f7dfa4.tar.gz
Install the OpenSSL man pages in /usr/share/openssl/man
and remove the WANT_OPENSSL_MANPAGES knob.
Diffstat (limited to 'secure/usr.bin')
-rw-r--r--secure/usr.bin/openssl/Makefile18
-rw-r--r--secure/usr.bin/openssl/Makefile.man42
-rw-r--r--secure/usr.bin/openssl/man/CA.pl.16
-rw-r--r--secure/usr.bin/openssl/man/asn1parse.16
-rw-r--r--secure/usr.bin/openssl/man/ca.16
-rw-r--r--secure/usr.bin/openssl/man/ciphers.16
-rw-r--r--secure/usr.bin/openssl/man/crl.16
-rw-r--r--secure/usr.bin/openssl/man/crl2pkcs7.16
-rw-r--r--secure/usr.bin/openssl/man/dgst.16
-rw-r--r--secure/usr.bin/openssl/man/dhparam.16
-rw-r--r--secure/usr.bin/openssl/man/dsa.16
-rw-r--r--secure/usr.bin/openssl/man/dsaparam.16
-rw-r--r--secure/usr.bin/openssl/man/enc.16
-rw-r--r--secure/usr.bin/openssl/man/gendsa.16
-rw-r--r--secure/usr.bin/openssl/man/genrsa.16
-rw-r--r--secure/usr.bin/openssl/man/nseq.16
-rw-r--r--secure/usr.bin/openssl/man/ocsp.16
-rw-r--r--secure/usr.bin/openssl/man/openssl.16
-rw-r--r--secure/usr.bin/openssl/man/passwd.16
-rw-r--r--secure/usr.bin/openssl/man/pkcs12.16
-rw-r--r--secure/usr.bin/openssl/man/pkcs7.16
-rw-r--r--secure/usr.bin/openssl/man/pkcs8.16
-rw-r--r--secure/usr.bin/openssl/man/rand.16
-rw-r--r--secure/usr.bin/openssl/man/req.16
-rw-r--r--secure/usr.bin/openssl/man/rsa.16
-rw-r--r--secure/usr.bin/openssl/man/rsautl.16
-rw-r--r--secure/usr.bin/openssl/man/s_client.16
-rw-r--r--secure/usr.bin/openssl/man/s_server.16
-rw-r--r--secure/usr.bin/openssl/man/sess_id.16
-rw-r--r--secure/usr.bin/openssl/man/smime.16
-rw-r--r--secure/usr.bin/openssl/man/speed.16
-rw-r--r--secure/usr.bin/openssl/man/spkac.16
-rw-r--r--secure/usr.bin/openssl/man/verify.16
-rw-r--r--secure/usr.bin/openssl/man/version.16
-rw-r--r--secure/usr.bin/openssl/man/x509.16
35 files changed, 144 insertions, 114 deletions
diff --git a/secure/usr.bin/openssl/Makefile b/secure/usr.bin/openssl/Makefile
index 9109390..0b41c15 100644
--- a/secure/usr.bin/openssl/Makefile
+++ b/secure/usr.bin/openssl/Makefile
@@ -8,6 +8,9 @@ LDADD= -lssl -lcrypto
NOLINT= true
+.if exists(Makefile.man)
+.include "Makefile.man"
+.endif
.include "../../lib/libcrypto/Makefile.inc"
CFLAGS+= -DMONOLITH -I${.CURDIR}
@@ -19,22 +22,7 @@ SRCS+= app_rand.c apps.c asn1pars.c ca.c ciphers.c crl.c crl2p7.c \
s_client.c s_server.c s_socket.c s_time.c sess_id.c smime.c \
speed.c spkac.c verify.c version.c x509.c
-MAN1= CA.pl.1 asn1parse.1 ca.1 ciphers.1 config.1 crl.1 crl2pkcs7.1 \
- dgst.1 dhparam.1 dsa.1 dsaparam.1 enc.1 gendsa.1 genrsa.1 \
- nseq.1 ocsp.1 openssl.1 passwd.1 pkcs12.1 pkcs7.1 pkcs8.1 \
- rand.1 req.1 rsa.1 rsautl.1 s_client.1 s_server.1 sess_id.1 \
- smime.1 speed.1 spkac.1 verify.1 version.1 x509.1
-
.include <bsd.prog.mk>
.PATH: ${LCRYPTO_SRC}/apps \
${.CURDIR}/man
-
-mann-update:
- for i in `( cd ${LCRYPTO_DOC}/apps ; ls *.pod )` ; do \
- cp ${LCRYPTO_DOC}/apps/$$i . ;\
- pod2man --section=3 --release="0.9.7" --center="OpenSSL" \
- $$i > ${.CURDIR}/man/$${i%%.pod}.1 ;\
- rm $$i ;\
- echo $${i%%.pod} ;\
- done
diff --git a/secure/usr.bin/openssl/Makefile.man b/secure/usr.bin/openssl/Makefile.man
new file mode 100644
index 0000000..51f677d
--- /dev/null
+++ b/secure/usr.bin/openssl/Makefile.man
@@ -0,0 +1,42 @@
+# $FreeBSD$
+# DO NOT EDIT: generated from man-makefile-update target
+MAN+= CA.pl.1
+MAN+= asn1parse.1
+MAN+= ca.1
+MAN+= ciphers.1
+MAN+= crl.1
+MAN+= crl2pkcs7.1
+MAN+= dgst.1
+MAN+= dhparam.1
+MAN+= dsa.1
+MAN+= dsaparam.1
+MAN+= enc.1
+MAN+= gendsa.1
+MAN+= genrsa.1
+MAN+= nseq.1
+MAN+= ocsp.1
+MAN+= openssl.1
+MAN+= passwd.1
+MAN+= pkcs12.1
+MAN+= pkcs7.1
+MAN+= pkcs8.1
+MAN+= rand.1
+MAN+= req.1
+MAN+= rsa.1
+MAN+= rsautl.1
+MAN+= s_client.1
+MAN+= s_server.1
+MAN+= sess_id.1
+MAN+= smime.1
+MAN+= speed.1
+MAN+= spkac.1
+MAN+= verify.1
+MAN+= version.1
+MAN+= x509.1
+MLINKS+= dgst.1 md5.1
+MLINKS+= dgst.1 md4.1
+MLINKS+= dgst.1 md2.1
+MLINKS+= dgst.1 sha1.1
+MLINKS+= dgst.1 sha.1
+MLINKS+= dgst.1 mdc2.1
+MLINKS+= dgst.1 ripemd160.1
diff --git a/secure/usr.bin/openssl/man/CA.pl.1 b/secure/usr.bin/openssl/man/CA.pl.1
index a20c295..1910efc 100644
--- a/secure/usr.bin/openssl/man/CA.pl.1
+++ b/secure/usr.bin/openssl/man/CA.pl.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:04:57 2003
+.\" Mon Feb 3 10:00:53 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "CA.pl 3"
-.TH CA.pl 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "CA.PL 1"
+.TH CA.PL 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
\&\s-1CA\s0.pl \- friendlier interface for OpenSSL certificate programs
diff --git a/secure/usr.bin/openssl/man/asn1parse.1 b/secure/usr.bin/openssl/man/asn1parse.1
index 76eadb2..2abbcca 100644
--- a/secure/usr.bin/openssl/man/asn1parse.1
+++ b/secure/usr.bin/openssl/man/asn1parse.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:04:58 2003
+.\" Mon Feb 3 10:00:53 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "asn1parse 3"
-.TH asn1parse 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "ASN1PARSE 1"
+.TH ASN1PARSE 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
asn1parse \- \s-1ASN\s0.1 parsing tool
diff --git a/secure/usr.bin/openssl/man/ca.1 b/secure/usr.bin/openssl/man/ca.1
index bccbbc4..7802f38 100644
--- a/secure/usr.bin/openssl/man/ca.1
+++ b/secure/usr.bin/openssl/man/ca.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:04:59 2003
+.\" Mon Feb 3 10:00:53 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "ca 3"
-.TH ca 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "CA 1"
+.TH CA 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
ca \- sample minimal \s-1CA\s0 application
diff --git a/secure/usr.bin/openssl/man/ciphers.1 b/secure/usr.bin/openssl/man/ciphers.1
index 1083d22..dcb0993 100644
--- a/secure/usr.bin/openssl/man/ciphers.1
+++ b/secure/usr.bin/openssl/man/ciphers.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:01 2003
+.\" Mon Feb 3 10:00:53 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "ciphers 3"
-.TH ciphers 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "CIPHERS 1"
+.TH CIPHERS 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
ciphers \- \s-1SSL\s0 cipher display and cipher list tool.
diff --git a/secure/usr.bin/openssl/man/crl.1 b/secure/usr.bin/openssl/man/crl.1
index c3103ff..2745af6 100644
--- a/secure/usr.bin/openssl/man/crl.1
+++ b/secure/usr.bin/openssl/man/crl.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:03 2003
+.\" Mon Feb 3 10:00:54 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "crl 3"
-.TH crl 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "CRL 1"
+.TH CRL 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
crl \- \s-1CRL\s0 utility
diff --git a/secure/usr.bin/openssl/man/crl2pkcs7.1 b/secure/usr.bin/openssl/man/crl2pkcs7.1
index 3f879f4..7ef3d94 100644
--- a/secure/usr.bin/openssl/man/crl2pkcs7.1
+++ b/secure/usr.bin/openssl/man/crl2pkcs7.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:04 2003
+.\" Mon Feb 3 10:00:54 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "crl2pkcs7 3"
-.TH crl2pkcs7 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "CRL2PKCS7 1"
+.TH CRL2PKCS7 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
crl2pkcs7 \- Create a PKCS#7 structure from a \s-1CRL\s0 and certificates.
diff --git a/secure/usr.bin/openssl/man/dgst.1 b/secure/usr.bin/openssl/man/dgst.1
index c9a9096..75f24d7 100644
--- a/secure/usr.bin/openssl/man/dgst.1
+++ b/secure/usr.bin/openssl/man/dgst.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:05 2003
+.\" Mon Feb 3 10:00:54 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "dgst 3"
-.TH dgst 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "DGST 1"
+.TH DGST 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
dgst, md5, md4, md2, sha1, sha, mdc2, ripemd160 \- message digests
diff --git a/secure/usr.bin/openssl/man/dhparam.1 b/secure/usr.bin/openssl/man/dhparam.1
index 755b3a2..048a590 100644
--- a/secure/usr.bin/openssl/man/dhparam.1
+++ b/secure/usr.bin/openssl/man/dhparam.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:06 2003
+.\" Mon Feb 3 10:00:54 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "dhparam 3"
-.TH dhparam 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "DHPARAM 1"
+.TH DHPARAM 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
dhparam \- \s-1DH\s0 parameter manipulation and generation
diff --git a/secure/usr.bin/openssl/man/dsa.1 b/secure/usr.bin/openssl/man/dsa.1
index 8abfe40..0a9c964 100644
--- a/secure/usr.bin/openssl/man/dsa.1
+++ b/secure/usr.bin/openssl/man/dsa.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:07 2003
+.\" Mon Feb 3 10:00:54 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "dsa 3"
-.TH dsa 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "DSA 1"
+.TH DSA 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
dsa \- \s-1DSA\s0 key processing
diff --git a/secure/usr.bin/openssl/man/dsaparam.1 b/secure/usr.bin/openssl/man/dsaparam.1
index ae4b089..3817bba 100644
--- a/secure/usr.bin/openssl/man/dsaparam.1
+++ b/secure/usr.bin/openssl/man/dsaparam.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:08 2003
+.\" Mon Feb 3 10:00:55 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "dsaparam 3"
-.TH dsaparam 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "DSAPARAM 1"
+.TH DSAPARAM 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
dsaparam \- \s-1DSA\s0 parameter manipulation and generation
diff --git a/secure/usr.bin/openssl/man/enc.1 b/secure/usr.bin/openssl/man/enc.1
index dc372f2..f579963 100644
--- a/secure/usr.bin/openssl/man/enc.1
+++ b/secure/usr.bin/openssl/man/enc.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:09 2003
+.\" Mon Feb 3 10:00:55 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "enc 3"
-.TH enc 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "ENC 1"
+.TH ENC 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
enc \- symmetric cipher routines
diff --git a/secure/usr.bin/openssl/man/gendsa.1 b/secure/usr.bin/openssl/man/gendsa.1
index 6ec8233..939c81c 100644
--- a/secure/usr.bin/openssl/man/gendsa.1
+++ b/secure/usr.bin/openssl/man/gendsa.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:10 2003
+.\" Mon Feb 3 10:00:55 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "gendsa 3"
-.TH gendsa 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "GENDSA 1"
+.TH GENDSA 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
gendsa \- generate a \s-1DSA\s0 private key from a set of parameters
diff --git a/secure/usr.bin/openssl/man/genrsa.1 b/secure/usr.bin/openssl/man/genrsa.1
index dfe2627..ad47fd7 100644
--- a/secure/usr.bin/openssl/man/genrsa.1
+++ b/secure/usr.bin/openssl/man/genrsa.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:11 2003
+.\" Mon Feb 3 10:00:55 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "genrsa 3"
-.TH genrsa 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "GENRSA 1"
+.TH GENRSA 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
genrsa \- generate an \s-1RSA\s0 private key
diff --git a/secure/usr.bin/openssl/man/nseq.1 b/secure/usr.bin/openssl/man/nseq.1
index a47412b..5b844bd 100644
--- a/secure/usr.bin/openssl/man/nseq.1
+++ b/secure/usr.bin/openssl/man/nseq.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:12 2003
+.\" Mon Feb 3 10:00:56 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "nseq 3"
-.TH nseq 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "NSEQ 1"
+.TH NSEQ 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
nseq \- create or examine a netscape certificate sequence
diff --git a/secure/usr.bin/openssl/man/ocsp.1 b/secure/usr.bin/openssl/man/ocsp.1
index c312ec6..a2d88fe 100644
--- a/secure/usr.bin/openssl/man/ocsp.1
+++ b/secure/usr.bin/openssl/man/ocsp.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:13 2003
+.\" Mon Feb 3 10:00:56 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "ocsp 3"
-.TH ocsp 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "OCSP 1"
+.TH OCSP 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
ocsp \- Online Certificate Status Protocol utility
diff --git a/secure/usr.bin/openssl/man/openssl.1 b/secure/usr.bin/openssl/man/openssl.1
index c88e763..7ebc195 100644
--- a/secure/usr.bin/openssl/man/openssl.1
+++ b/secure/usr.bin/openssl/man/openssl.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:15 2003
+.\" Mon Feb 3 10:00:56 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "openssl 3"
-.TH openssl 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "OPENSSL 1"
+.TH OPENSSL 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
openssl \- OpenSSL command line tool
diff --git a/secure/usr.bin/openssl/man/passwd.1 b/secure/usr.bin/openssl/man/passwd.1
index 67e5dee..04aef92 100644
--- a/secure/usr.bin/openssl/man/passwd.1
+++ b/secure/usr.bin/openssl/man/passwd.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:16 2003
+.\" Mon Feb 3 10:00:56 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "passwd 3"
-.TH passwd 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "PASSWD 1"
+.TH PASSWD 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
passwd \- compute password hashes
diff --git a/secure/usr.bin/openssl/man/pkcs12.1 b/secure/usr.bin/openssl/man/pkcs12.1
index 89e23c5..e3b577d 100644
--- a/secure/usr.bin/openssl/man/pkcs12.1
+++ b/secure/usr.bin/openssl/man/pkcs12.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:17 2003
+.\" Mon Feb 3 10:00:57 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "pkcs12 3"
-.TH pkcs12 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "PKCS12 1"
+.TH PKCS12 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
pkcs12 \- PKCS#12 file utility
diff --git a/secure/usr.bin/openssl/man/pkcs7.1 b/secure/usr.bin/openssl/man/pkcs7.1
index 539985d..e1ea83d 100644
--- a/secure/usr.bin/openssl/man/pkcs7.1
+++ b/secure/usr.bin/openssl/man/pkcs7.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:19 2003
+.\" Mon Feb 3 10:00:57 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "pkcs7 3"
-.TH pkcs7 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "PKCS7 1"
+.TH PKCS7 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
pkcs7 \- PKCS#7 utility
diff --git a/secure/usr.bin/openssl/man/pkcs8.1 b/secure/usr.bin/openssl/man/pkcs8.1
index ff9883a..a4ee228 100644
--- a/secure/usr.bin/openssl/man/pkcs8.1
+++ b/secure/usr.bin/openssl/man/pkcs8.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:20 2003
+.\" Mon Feb 3 10:00:57 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "pkcs8 3"
-.TH pkcs8 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "PKCS8 1"
+.TH PKCS8 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
pkcs8 \- PKCS#8 format private key conversion tool
diff --git a/secure/usr.bin/openssl/man/rand.1 b/secure/usr.bin/openssl/man/rand.1
index 37c5c07..21ccb6e 100644
--- a/secure/usr.bin/openssl/man/rand.1
+++ b/secure/usr.bin/openssl/man/rand.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:21 2003
+.\" Mon Feb 3 10:00:57 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "rand 3"
-.TH rand 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "RAND 1"
+.TH RAND 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
rand \- generate pseudo-random bytes
diff --git a/secure/usr.bin/openssl/man/req.1 b/secure/usr.bin/openssl/man/req.1
index 1ae330e..6fac01c 100644
--- a/secure/usr.bin/openssl/man/req.1
+++ b/secure/usr.bin/openssl/man/req.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:22 2003
+.\" Mon Feb 3 10:00:57 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "req 3"
-.TH req 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "REQ 1"
+.TH REQ 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
req \- PKCS#10 certificate request and certificate generating utility.
diff --git a/secure/usr.bin/openssl/man/rsa.1 b/secure/usr.bin/openssl/man/rsa.1
index ea57b93..364d051 100644
--- a/secure/usr.bin/openssl/man/rsa.1
+++ b/secure/usr.bin/openssl/man/rsa.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:23 2003
+.\" Mon Feb 3 10:00:58 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "rsa 3"
-.TH rsa 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "RSA 1"
+.TH RSA 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
rsa \- \s-1RSA\s0 key processing tool
diff --git a/secure/usr.bin/openssl/man/rsautl.1 b/secure/usr.bin/openssl/man/rsautl.1
index 67e3f3e..f10db72 100644
--- a/secure/usr.bin/openssl/man/rsautl.1
+++ b/secure/usr.bin/openssl/man/rsautl.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:25 2003
+.\" Mon Feb 3 10:00:58 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "rsautl 3"
-.TH rsautl 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "RSAUTL 1"
+.TH RSAUTL 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
rsautl \- \s-1RSA\s0 utility
diff --git a/secure/usr.bin/openssl/man/s_client.1 b/secure/usr.bin/openssl/man/s_client.1
index c0c0d0b..deba92d 100644
--- a/secure/usr.bin/openssl/man/s_client.1
+++ b/secure/usr.bin/openssl/man/s_client.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:26 2003
+.\" Mon Feb 3 10:00:58 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "s_client 3"
-.TH s_client 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "S_CLIENT 1"
+.TH S_CLIENT 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
s_client \- \s-1SSL/TLS\s0 client program
diff --git a/secure/usr.bin/openssl/man/s_server.1 b/secure/usr.bin/openssl/man/s_server.1
index e2fd3e7..15e6743 100644
--- a/secure/usr.bin/openssl/man/s_server.1
+++ b/secure/usr.bin/openssl/man/s_server.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:27 2003
+.\" Mon Feb 3 10:00:58 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "s_server 3"
-.TH s_server 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "S_SERVER 1"
+.TH S_SERVER 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
s_server \- \s-1SSL/TLS\s0 server program
diff --git a/secure/usr.bin/openssl/man/sess_id.1 b/secure/usr.bin/openssl/man/sess_id.1
index 9a42c14..2175331 100644
--- a/secure/usr.bin/openssl/man/sess_id.1
+++ b/secure/usr.bin/openssl/man/sess_id.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:28 2003
+.\" Mon Feb 3 10:00:59 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "sess_id 3"
-.TH sess_id 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "SESS_ID 1"
+.TH SESS_ID 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
sess_id \- \s-1SSL/TLS\s0 session handling utility
diff --git a/secure/usr.bin/openssl/man/smime.1 b/secure/usr.bin/openssl/man/smime.1
index 1934b8c..4ccd804 100644
--- a/secure/usr.bin/openssl/man/smime.1
+++ b/secure/usr.bin/openssl/man/smime.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:29 2003
+.\" Mon Feb 3 10:00:59 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "smime 3"
-.TH smime 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "SMIME 1"
+.TH SMIME 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
smime \- S/MIME utility
diff --git a/secure/usr.bin/openssl/man/speed.1 b/secure/usr.bin/openssl/man/speed.1
index db174ab..1c37faa 100644
--- a/secure/usr.bin/openssl/man/speed.1
+++ b/secure/usr.bin/openssl/man/speed.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:31 2003
+.\" Mon Feb 3 10:00:59 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "speed 3"
-.TH speed 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "SPEED 1"
+.TH SPEED 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
speed \- test library performance
diff --git a/secure/usr.bin/openssl/man/spkac.1 b/secure/usr.bin/openssl/man/spkac.1
index 96a7211..ad3cd13 100644
--- a/secure/usr.bin/openssl/man/spkac.1
+++ b/secure/usr.bin/openssl/man/spkac.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:32 2003
+.\" Mon Feb 3 10:00:59 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "spkac 3"
-.TH spkac 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "SPKAC 1"
+.TH SPKAC 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
spkac \- \s-1SPKAC\s0 printing and generating utility
diff --git a/secure/usr.bin/openssl/man/verify.1 b/secure/usr.bin/openssl/man/verify.1
index f9b7d6a..089ad95 100644
--- a/secure/usr.bin/openssl/man/verify.1
+++ b/secure/usr.bin/openssl/man/verify.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:33 2003
+.\" Mon Feb 3 10:01:00 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "verify 3"
-.TH verify 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "VERIFY 1"
+.TH VERIFY 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
verify \- Utility to verify certificates.
diff --git a/secure/usr.bin/openssl/man/version.1 b/secure/usr.bin/openssl/man/version.1
index 6337fe9..fb3782d 100644
--- a/secure/usr.bin/openssl/man/version.1
+++ b/secure/usr.bin/openssl/man/version.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:34 2003
+.\" Mon Feb 3 10:01:00 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "version 3"
-.TH version 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "VERSION 1"
+.TH VERSION 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
version \- print OpenSSL version information
diff --git a/secure/usr.bin/openssl/man/x509.1 b/secure/usr.bin/openssl/man/x509.1
index d1530c5..92c7c34 100644
--- a/secure/usr.bin/openssl/man/x509.1
+++ b/secure/usr.bin/openssl/man/x509.1
@@ -1,5 +1,5 @@
.\" Automatically generated by Pod::Man version 1.15
-.\" Sun Jan 12 18:05:35 2003
+.\" Mon Feb 3 10:01:00 2003
.\"
.\" Standard preamble:
.\" ======================================================================
@@ -137,8 +137,8 @@
.rm #[ #] #H #V #F C
.\" ======================================================================
.\"
-.IX Title "x509 3"
-.TH x509 3 "0.9.7" "2003-01-12" "OpenSSL"
+.IX Title "X509 1"
+.TH X509 1 "0.9.7" "2003-02-03" "OpenSSL"
.UC
.SH "NAME"
x509 \- Certificate display and signing utility
OpenPOWER on IntegriCloud