Previous | Contents | Index |
The certificate request utility is used to generate a key pair, generate a certificate request which can then be signed by a Certificate Authority, and also generate a self-signed certificate.
You must be privileged to use this utility. To run the utility, issue the OpenVMS command:
$ RUN PMDF_EXE:tls_certreq |
# /pmdf/bin/tls_certreq |
C:\> tls_certreq |
The utility prompts for several pieces of information including:
The three files produced as output by the tls_certreq
utility consist primarily of BASE64 encoded data, and are not especially intelligible without decoding. (However, see the tls_certdump
utility which can display the data in such files.) For convenience in
managing such files, the files are labelled with an initial text line
describing the contents.
The private key file, the file which must be protected against world access as it contains your secret private key, (default name server-priv.pem
), begins with the line:
-----BEGIN RSA PRIVATE KEY----- |
The certificate request file containing your public key, the file to be sent to a Certificate Authority for signing, (default name server-certreq.pem
), begins with the line:
-----BEGIN CERTIFICATE REQUEST----- |
The self-signed certificate file, the file you can use while awaiting signing of your certificate request by a Certificate Authority, (default name server-selfsign.pem
, which must be renamed to server-pub.pem
if you want to use it while awaiting your signed certificate), begins
with the line:
-----BEGIN CERTIFICATE----- |
4 Due to United States export restriction regulations, most sites outside the United States and Canada will be limited to at most 1024 bits. Sites inside the United States and Canada can select up to the current PMDF-TLS maximum of 2048 bits, although note that currently the greatest number of bits likely to be supported by any client is 1024 so for practical purposes using more than 1024 bits is not recommended. Also note that most currently existing "export version" TLS-enabled clients are still limited to 512 bits. When negotiating with such clients, if the PMDF-TLS certificate key length is greater than 512 bits, PMDF-TLS will automatically negotiate the TLS connection with a temporary 512 bit key.5 ISO country codes essentially
correspond to the list of two character top level country domains
listed in the
|
Previous | Next | Contents | Index |