1999-11-12 22:04:41 +08:00
|
|
|
=pod
|
|
|
|
|
2019-10-13 05:45:56 +08:00
|
|
|
=begin comment
|
|
|
|
{- join("\n", @autowarntext) -}
|
|
|
|
|
|
|
|
=end comment
|
|
|
|
|
1999-11-12 22:04:41 +08:00
|
|
|
=head1 NAME
|
|
|
|
|
2020-02-19 00:52:12 +08:00
|
|
|
openssl-spkac - SPKAC printing and generating command
|
1999-11-12 22:04:41 +08:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
B<openssl> B<spkac>
|
2016-02-06 00:58:45 +08:00
|
|
|
[B<-help>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-in> I<filename>]
|
|
|
|
[B<-out> I<filename>]
|
2020-11-30 14:25:46 +08:00
|
|
|
[B<-key> I<filename>|I<uri>]
|
2020-05-06 19:51:50 +08:00
|
|
|
[B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-passin> I<arg>]
|
|
|
|
[B<-challenge> I<string>]
|
2000-02-03 10:56:48 +08:00
|
|
|
[B<-pubkey>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-spkac> I<spkacname>]
|
|
|
|
[B<-spksect> I<section>]
|
1999-11-12 22:04:41 +08:00
|
|
|
[B<-noout>]
|
|
|
|
[B<-verify>]
|
2020-09-21 17:56:01 +08:00
|
|
|
{- $OpenSSL::safe::opt_engine_synopsis -}{- $OpenSSL::safe::opt_provider_synopsis -}
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2019-10-11 23:52:12 +08:00
|
|
|
=for openssl ifdef engine
|
2019-09-23 07:49:25 +08:00
|
|
|
|
1999-11-12 22:04:41 +08:00
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
Command docs: fix up command references
Almost all OpenSSL commands are in reality 'openssl cmd', so make sure
they are refered to like that and not just as the sub-command.
Self-references are avoided as much as is possible, and replaced with
"this command". In some cases, we even avoid that with a slight
rewrite of the sentence or paragrah they were in. However, in the few
cases where a self-reference is still admissible, they are done in
bold, i.e. openssl-speed.pod references itself like this:
B<openssl speed>
References to other commands are done as manual links, i.e. CA.pl.pod
references 'openssl req' like this: L<openssl-req(1)>
Some commands are examples rather than references; we enclose those in
C<>.
While we are it, we abolish "utility", replacing it with "command", or
remove it entirely in some cases.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10065)
2019-10-02 01:43:36 +08:00
|
|
|
This command processes Netscape signed public key and challenge
|
1999-11-12 22:04:41 +08:00
|
|
|
(SPKAC) files. It can print out their contents, verify the signature and
|
|
|
|
produce its own SPKACs from a supplied private key.
|
|
|
|
|
2016-12-13 00:14:40 +08:00
|
|
|
=head1 OPTIONS
|
1999-11-12 22:04:41 +08:00
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2016-02-06 00:58:45 +08:00
|
|
|
=item B<-help>
|
|
|
|
|
|
|
|
Print out a usage message.
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-in> I<filename>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-out> I<filename>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Specifies the output filename to write to or standard output by
|
1999-11-12 22:04:41 +08:00
|
|
|
default.
|
|
|
|
|
2020-11-30 14:25:46 +08:00
|
|
|
=item B<-key> I<filename>|I<uri>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2020-11-30 14:25:46 +08:00
|
|
|
Create an SPKAC file using the private key specified by I<filename> or I<uri>.
|
|
|
|
The B<-in>, B<-noout>, B<-spksect> and B<-verify> options are ignored if
|
1999-11-12 22:04:41 +08:00
|
|
|
present.
|
|
|
|
|
2020-05-06 19:51:50 +08:00
|
|
|
=item B<-keyform> B<DER>|B<PEM>|B<P12>|B<ENGINE>
|
2017-05-16 09:23:17 +08:00
|
|
|
|
2019-10-10 09:48:33 +08:00
|
|
|
The key format; the default is B<PEM>.
|
2020-05-06 19:51:50 +08:00
|
|
|
The only value with effect is B<ENGINE>; all others have become obsolete.
|
2020-11-28 00:05:30 +08:00
|
|
|
See L<openssl-format-options(1)/Format Options> for details.
|
2017-05-16 09:23:17 +08:00
|
|
|
|
2019-10-02 00:16:29 +08:00
|
|
|
=item B<-passin> I<arg>
|
2000-02-08 09:34:59 +08:00
|
|
|
|
2019-10-02 00:16:29 +08:00
|
|
|
The input file password source. For more information about the format of I<arg>
|
2020-11-28 00:05:30 +08:00
|
|
|
see L<openssl-passphrase-options(1)/Pass Phrase Options>.
|
2000-02-08 09:34:59 +08:00
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-challenge> I<string>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Specifies the challenge string if an SPKAC is being created.
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-spkac> I<spkacname>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Allows an alternative name form the variable containing the
|
1999-11-12 22:04:41 +08:00
|
|
|
SPKAC. The default is "SPKAC". This option affects both
|
|
|
|
generated and input SPKAC files.
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-spksect> I<section>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Allows an alternative name form the section containing the
|
1999-11-12 22:04:41 +08:00
|
|
|
SPKAC. The default is the default section.
|
|
|
|
|
|
|
|
=item B<-noout>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Don't output the text version of the SPKAC (not used if an
|
1999-11-12 22:04:41 +08:00
|
|
|
SPKAC is being created).
|
|
|
|
|
2000-02-03 10:56:48 +08:00
|
|
|
=item B<-pubkey>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Output the public key of an SPKAC (not used if an SPKAC is
|
2000-02-03 10:56:48 +08:00
|
|
|
being created).
|
|
|
|
|
1999-11-12 22:04:41 +08:00
|
|
|
=item B<-verify>
|
|
|
|
|
2017-03-30 05:38:30 +08:00
|
|
|
Verifies the digital signature on the supplied SPKAC.
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2019-10-13 05:45:56 +08:00
|
|
|
{- $OpenSSL::safe::opt_engine_item -}
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2020-02-25 12:29:30 +08:00
|
|
|
{- $OpenSSL::safe::opt_provider_item -}
|
|
|
|
|
1999-11-12 22:04:41 +08:00
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXAMPLES
|
|
|
|
|
|
|
|
Print out the contents of an SPKAC:
|
|
|
|
|
2000-01-07 09:39:59 +08:00
|
|
|
openssl spkac -in spkac.cnf
|
1999-11-12 22:04:41 +08:00
|
|
|
|
|
|
|
Verify the signature of an SPKAC:
|
|
|
|
|
2000-01-07 09:39:59 +08:00
|
|
|
openssl spkac -in spkac.cnf -noout -verify
|
1999-11-12 22:04:41 +08: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):
|
|
|
|
|
2018-07-04 00:45:14 +08:00
|
|
|
SPKAC=MIG5MGUwXDANBgkqhkiG9w0BAQEFAANLADBIAkEA\
|
|
|
|
1cCoq2Wa3Ixs47uI7FPVwHVIPDx5yso105Y6zpozam135a\
|
|
|
|
8R0CpoRvkkigIyXfcCjiVi5oWk+6FfPaD03uPFoQIDAQAB\
|
|
|
|
FgVoZWxsbzANBgkqhkiG9w0BAQQFAANBAFpQtY/FojdwkJ\
|
|
|
|
h1bEIYuc2EeM2KHTWPEepWYeawvHD0gQ3DngSC75YCWnnD\
|
|
|
|
dq+NQ3F+X4deMx9AaEglZtULwV4=
|
1999-11-12 22:04:41 +08:00
|
|
|
|
|
|
|
=head1 NOTES
|
|
|
|
|
Command docs: fix up command references
Almost all OpenSSL commands are in reality 'openssl cmd', so make sure
they are refered to like that and not just as the sub-command.
Self-references are avoided as much as is possible, and replaced with
"this command". In some cases, we even avoid that with a slight
rewrite of the sentence or paragrah they were in. However, in the few
cases where a self-reference is still admissible, they are done in
bold, i.e. openssl-speed.pod references itself like this:
B<openssl speed>
References to other commands are done as manual links, i.e. CA.pl.pod
references 'openssl req' like this: L<openssl-req(1)>
Some commands are examples rather than references; we enclose those in
C<>.
While we are it, we abolish "utility", replacing it with "command", or
remove it entirely in some cases.
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/10065)
2019-10-02 01:43:36 +08:00
|
|
|
A created SPKAC with suitable DN components appended can be fed to
|
|
|
|
L<openssl-ca(1)>.
|
1999-11-12 22:04:41 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2019-08-22 07:04:41 +08:00
|
|
|
L<openssl(1)>,
|
|
|
|
L<openssl-ca(1)>
|
1999-11-12 22:04:41 +08:00
|
|
|
|
2020-05-06 19:51:50 +08:00
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
All B<-keyform> values except B<ENGINE> have become obsolete in OpenSSL 3.0.0
|
|
|
|
and have no effect.
|
|
|
|
|
2020-06-25 09:27:51 +08:00
|
|
|
The B<-engine> option was deprecated in OpenSSL 3.0.
|
|
|
|
|
2016-05-18 23:44:05 +08:00
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2020-04-23 20:55:52 +08:00
|
|
|
Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2016-05-18 23:44:05 +08:00
|
|
|
|
2018-12-06 21:04:11 +08:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 23:44:05 +08:00
|
|
|
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
|