1999-11-12 14:04:41 +00:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2017-10-18 19:33:56 +00:00
|
|
|
openssl-spkac,
|
1999-11-12 14:04:41 +00:00
|
|
|
spkac - SPKAC printing and generating utility
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
B<openssl> B<spkac>
|
2016-02-05 16:58:45 +00:00
|
|
|
[B<-help>]
|
1999-11-12 14:04:41 +00:00
|
|
|
[B<-in filename>]
|
|
|
|
[B<-out filename>]
|
|
|
|
[B<-key keyfile>]
|
2017-05-16 01:23:17 +00:00
|
|
|
[B<-keyform PEM|DER|ENGINE>]
|
2000-02-16 23:16:01 +00:00
|
|
|
[B<-passin arg>]
|
1999-11-12 14:04:41 +00:00
|
|
|
[B<-challenge string>]
|
2000-02-03 02:56:48 +00:00
|
|
|
[B<-pubkey>]
|
1999-11-12 14:04:41 +00:00
|
|
|
[B<-spkac spkacname>]
|
|
|
|
[B<-spksect section>]
|
|
|
|
[B<-noout>]
|
|
|
|
[B<-verify>]
|
2003-01-30 22:02:27 +00:00
|
|
|
[B<-engine id>]
|
1999-11-12 14:04:41 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
The B<spkac> command processes Netscape signed public key and challenge
|
|
|
|
(SPKAC) files. It can print out their contents, verify the signature and
|
|
|
|
produce its own SPKACs from a supplied private key.
|
|
|
|
|
2016-12-12 16:14:40 +00:00
|
|
|
=head1 OPTIONS
|
1999-11-12 14:04:41 +00:00
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2016-02-05 16:58:45 +00:00
|
|
|
=item B<-help>
|
|
|
|
|
|
|
|
Print out a usage message.
|
|
|
|
|
1999-11-12 14:04:41 +00:00
|
|
|
=item B<-in filename>
|
|
|
|
|
|
|
|
This specifies the input filename to read from or standard input if this
|
|
|
|
option is not specified. Ignored if the B<-key> option is used.
|
|
|
|
|
|
|
|
=item B<-out filename>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Specifies the output filename to write to or standard output by
|
1999-11-12 14:04:41 +00:00
|
|
|
default.
|
|
|
|
|
|
|
|
=item B<-key keyfile>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Create an SPKAC file using the private key in B<keyfile>. The
|
1999-11-12 14:04:41 +00:00
|
|
|
B<-in>, B<-noout>, B<-spksect> and B<-verify> options are ignored if
|
|
|
|
present.
|
|
|
|
|
2017-05-16 01:23:17 +00:00
|
|
|
=item B<-keyform PEM|DER|ENGINE>
|
|
|
|
|
|
|
|
Whether the key format is PEM, DER, or an engine-backed key.
|
|
|
|
The default is PEM.
|
|
|
|
|
2000-02-08 01:34:59 +00:00
|
|
|
=item B<-passin password>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
The input file password source. For more information about the format of B<arg>
|
2015-08-17 19:21:33 +00:00
|
|
|
see the B<PASS PHRASE ARGUMENTS> section in L<openssl(1)>.
|
2000-02-08 01:34:59 +00:00
|
|
|
|
1999-11-12 14:04:41 +00:00
|
|
|
=item B<-challenge string>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Specifies the challenge string if an SPKAC is being created.
|
1999-11-12 14:04:41 +00:00
|
|
|
|
|
|
|
=item B<-spkac spkacname>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Allows an alternative name form the variable containing the
|
1999-11-12 14:04:41 +00:00
|
|
|
SPKAC. The default is "SPKAC". This option affects both
|
|
|
|
generated and input SPKAC files.
|
|
|
|
|
|
|
|
=item B<-spksect section>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Allows an alternative name form the section containing the
|
1999-11-12 14:04:41 +00:00
|
|
|
SPKAC. The default is the default section.
|
|
|
|
|
|
|
|
=item B<-noout>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Don't output the text version of the SPKAC (not used if an
|
1999-11-12 14:04:41 +00:00
|
|
|
SPKAC is being created).
|
|
|
|
|
2000-02-03 02:56:48 +00:00
|
|
|
=item B<-pubkey>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Output the public key of an SPKAC (not used if an SPKAC is
|
2000-02-03 02:56:48 +00:00
|
|
|
being created).
|
|
|
|
|
1999-11-12 14:04:41 +00:00
|
|
|
=item B<-verify>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Verifies the digital signature on the supplied SPKAC.
|
1999-11-12 14:04:41 +00:00
|
|
|
|
2003-01-30 22:02:27 +00:00
|
|
|
=item B<-engine id>
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Specifying an engine (by its unique B<id> string) will cause B<spkac>
|
2003-01-30 22:02:27 +00:00
|
|
|
to attempt to obtain a functional reference to the specified engine,
|
|
|
|
thus initialising it if needed. The engine will then be set as the default
|
|
|
|
for all available algorithms.
|
1999-11-12 14:04:41 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXAMPLES
|
|
|
|
|
|
|
|
Print out the contents of an SPKAC:
|
|
|
|
|
2000-01-07 01:39:59 +00:00
|
|
|
openssl spkac -in spkac.cnf
|
1999-11-12 14:04:41 +00:00
|
|
|
|
|
|
|
Verify the signature of an SPKAC:
|
|
|
|
|
2000-01-07 01:39:59 +00:00
|
|
|
openssl spkac -in spkac.cnf -noout -verify
|
1999-11-12 14:04:41 +00:00
|
|
|
|
|
|
|
Create an SPKAC using the challenge string "hello":
|
|
|
|
|
|
|
|
openssl spkac -key key.pem -challenge hello -out spkac.cnf
|
|
|
|
|
|
|
|
Example of an SPKAC, (long lines split up for clarity):
|
|
|
|
|
|
|
|
SPKAC=MIG5MGUwXDANBgkqhkiG9w0BAQEFAANLADBIAkEA1cCoq2Wa3Ixs47uI7F\
|
|
|
|
PVwHVIPDx5yso105Y6zpozam135a8R0CpoRvkkigIyXfcCjiVi5oWk+6FfPaD03u\
|
|
|
|
PFoQIDAQABFgVoZWxsbzANBgkqhkiG9w0BAQQFAANBAFpQtY/FojdwkJh1bEIYuc\
|
|
|
|
2EeM2KHTWPEepWYeawvHD0gQ3DngSC75YCWnnDdq+NQ3F+X4deMx9AaEglZtULwV\
|
|
|
|
4=
|
|
|
|
|
|
|
|
=head1 NOTES
|
|
|
|
|
|
|
|
A created SPKAC with suitable DN components appended can be fed into
|
|
|
|
the B<ca> utility.
|
|
|
|
|
|
|
|
SPKACs are typically generated by Netscape when a form is submitted
|
|
|
|
containing the B<KEYGEN> tag as part of the certificate enrollment
|
|
|
|
process.
|
|
|
|
|
|
|
|
The challenge string permits a primitive form of proof of possession
|
|
|
|
of private key. By checking the SPKAC signature and a random challenge
|
|
|
|
string some guarantee is given that the user knows the private key
|
|
|
|
corresponding to the public key being certified. This is important in
|
|
|
|
some applications. Without this it is possible for a previous SPKAC
|
|
|
|
to be used in a "replay attack".
|
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2015-08-17 19:21:33 +00:00
|
|
|
L<ca(1)>
|
1999-11-12 14:04:41 +00:00
|
|
|
|
2016-05-18 15:44:05 +00:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2017-03-29 21:38:30 +00:00
|
|
|
Copyright 2000-2017 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 15:44:05 +00:00
|
|
|
|
|
|
|
Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
this file except in compliance with the License. You can obtain a copy
|
|
|
|
in the file LICENSE in the source distribution or at
|
|
|
|
L<https://www.openssl.org/source/license.html>.
|
|
|
|
|
|
|
|
=cut
|