=head1 NAME
-openssl-asn1parse - ASN.1 parsing tool
+openssl-asn1parse - ASN.1 parsing command
=head1 SYNOPSIS
=for openssl foreign manual ps(1)
The password used to encrypt the private key. Since on some
-systems the command line arguments are visible (e.g. Unix with
-the L<ps(1)> utility) this option should be used with caution.
+systems the command line arguments are visible (e.g., when using
+L<ps(1)> on Unix),
+this option should be used with caution.
=item B<-selfsign>
the database has to be kept in memory.
This command really needs rewriting or the required functionality
-exposed at either a command or interface level so a more friendly utility
-(perl script or GUI) can handle things properly. The script
+exposed at either a command or interface level so that a more user-friendly
+replacement could handle things properly. The script
B<CA.pl> helps a little but not very much.
Any fields in a request that are not present in a policy are silently
=head1 NAME
-openssl-ciphers - SSL cipher display and cipher list tool
+openssl-ciphers - SSL cipher display and cipher list command
=head1 SYNOPSIS
=head1 DESCRIPTION
This command converts textual OpenSSL cipher lists into
-ordered SSL cipher preference lists. It can be used as a test tool to
+ordered SSL cipher preference lists. It can be used to
determine the appropriate cipherlist.
=head1 OPTIONS
=head1 NAME
-openssl-cms - CMS utility
+openssl-cms - CMS command
=head1 SYNOPSIS
=head1 NAME
-openssl-crl - CRL utility
+openssl-crl - CRL command
=head1 SYNOPSIS
=head1 NAME
-openssl-ocsp - Online Certificate Status Protocol utility
+openssl-ocsp - Online Certificate Status Protocol command
=head1 SYNOPSIS
=head1 NAME
-openssl-pkcs12 - PKCS#12 file utility
+openssl-pkcs12 - PKCS#12 file command
=head1 SYNOPSIS
=head1 NAME
-openssl-pkcs7 - PKCS#7 utility
+openssl-pkcs7 - PKCS#7 command
=head1 SYNOPSIS
=head1 NAME
-openssl-pkcs8 - PKCS#8 format private key conversion tool
+openssl-pkcs8 - PKCS#8 format private key conversion command
=head1 SYNOPSIS
=head1 NAME
-openssl-pkey - public or private key processing tool
+openssl-pkey - public or private key processing command
=head1 SYNOPSIS
=head1 NAME
-openssl-pkeyparam - public key algorithm parameter processing tool
+openssl-pkeyparam - public key algorithm parameter processing command
=head1 SYNOPSIS
=head1 NAME
-openssl-pkeyutl - public key algorithm utility
+openssl-pkeyutl - public key algorithm command
=head1 SYNOPSIS
=head1 NAME
-openssl-req - PKCS#10 certificate request and certificate generating utility
+openssl-req - PKCS#10 certificate request and certificate generating command
=head1 SYNOPSIS
=head1 NAME
-openssl-rsa - RSA key processing tool
+openssl-rsa - RSA key processing command
=head1 SYNOPSIS
=head1 NAME
-openssl-rsautl - RSA utility
+openssl-rsautl - RSA command
=head1 SYNOPSIS
and random padding data visible instead of the 0xff bytes.
It is possible to analyse the signature of certificates using this
-utility in conjunction with L<openssl-asn1parse(1)>. Consider the self signed
+command in conjunction with L<openssl-asn1parse(1)>. Consider the self signed
example in F<certs/pca-cert.pem>. Running L<openssl-asn1parse(1)> as follows
yields:
=head1 NAME
-openssl-sess_id - SSL/TLS session handling utility
+openssl-sess_id - SSL/TLS session handling command
=head1 SYNOPSIS
=head1 NAME
-openssl-smime - S/MIME utility
+openssl-smime - S/MIME command
=head1 SYNOPSIS
=head1 NAME
-openssl-spkac - SPKAC printing and generating utility
+openssl-spkac - SPKAC printing and generating command
=head1 SYNOPSIS
=head1 NAME
-openssl-storeutl - STORE utility
+openssl-storeutl - STORE command
=head1 SYNOPSIS
=head1 NAME
-openssl-ts - Time Stamping Authority tool (client/server)
+openssl-ts - Time Stamping Authority command
=head1 SYNOPSIS
=head1 NAME
-openssl-verify - Utility to verify certificates
+openssl-verify - certificate verification command
=head1 SYNOPSIS
=head1 NAME
-openssl-x509 - Certificate display and signing utility
+openssl-x509 - Certificate display and signing command
=head1 SYNOPSIS
=head1 DESCRIPTION
-This command is a multi purpose certificate utility. It can
+This command is a multi-purposes certificate command. It can
be used to display certificate information, convert certificates to
various forms, sign certificate requests like a "mini CA" or edit
certificate trust settings.
=head1 NAME
-openssl - OpenSSL command line tool
+openssl - OpenSSL command line program
=head1 SYNOPSIS
v2/v3) and Transport Layer Security (TLS v1) network protocols and related
cryptography standards required by them.
-The B<openssl> program is a command line tool for using the various
+The B<openssl> program is a command line program for using the various
cryptography functions of OpenSSL's B<crypto> library from the shell.
It can be used for
=item B<cms>
-CMS (Cryptographic Message Syntax) utility.
+CMS (Cryptographic Message Syntax) command.
=item B<crl>
=item B<ocsp>
-Online Certificate Status Protocol utility.
+Online Certificate Status Protocol command.
=item B<passwd>
=item B<pkcs8>
-PKCS#8 format private key conversion tool.
+PKCS#8 format private key conversion command.
=item B<pkey>
=item B<pkeyutl>
-Public key algorithm cryptographic operation utility.
+Public key algorithm cryptographic operation command.
=item B<prime>
=item B<rsautl>
-RSA utility for signing, verification, encryption, and decryption. Superseded
+RSA command for signing, verification, encryption, and decryption. Superseded
by L<openssl-pkeyutl(1)>.
=item B<s_client>
=item B<spkac>
-SPKAC printing and generating utility.
+SPKAC printing and generating command.
=item B<srp>
=item B<storeutl>
-Utility to list and display certificates, keys, CRLs, etc.
+Command to list and display certificates, keys, CRLs, etc.
=item B<ts>
-Time Stamping Authority tool (client/server).
+Time Stamping Authority command.
=item B<verify>
}
err($id, "found 'epoch' should use 'Epoch'")
if $contents =~ /\bepoch\b/;
+ if ( $id =~ m@man1/@ ) {
+ err($id, "found 'tool' in NAME, should use 'command'")
+ if $contents =~ /=head1 NAME.*\btool\b.*=head1 SYNOPSIS/s;
+ err($id, "found 'utility' in NAME, should use 'command'")
+ if $contents =~ /NAME.*\butility\b.*=head1 SYNOPSIS/s;
+
+ }
}
# Perform all sorts of nit/error checks on a manpage