2017-08-14 21:32:07 +08:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
2019-08-22 07:04:41 +08:00
|
|
|
openssl-srp - maintain SRP password file
|
2017-08-14 21:32:07 +08:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
B<openssl srp>
|
|
|
|
[B<-help>]
|
|
|
|
[B<-verbose>]
|
|
|
|
[B<-add>]
|
|
|
|
[B<-modify>]
|
|
|
|
[B<-delete>]
|
|
|
|
[B<-list>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-name> I<section>]
|
|
|
|
[B<-config> I<file>]
|
|
|
|
[B<-srpvfile> I<file>]
|
|
|
|
[B<-gn> I<identifier>]
|
2019-10-01 16:00:14 +08:00
|
|
|
[B<-userinfo> I<text>]
|
2019-09-26 03:20:11 +08:00
|
|
|
[B<-passin> I<arg>]
|
|
|
|
[B<-passout> I<arg>]
|
2019-10-01 15:57:37 +08:00
|
|
|
[I<user> ...]
|
2017-08-14 21:32:07 +08:00
|
|
|
|
2019-09-23 07:49:25 +08:00
|
|
|
=for comment ifdef engine
|
|
|
|
|
2017-08-14 21:32:07 +08:00
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2018-10-26 06:43:35 +08:00
|
|
|
The B<srp> command is used to maintain an SRP (secure remote password)
|
2017-08-14 21:32:07 +08:00
|
|
|
file.
|
|
|
|
At most one of the B<-add>, B<-modify>, B<-delete>, and B<-list> options
|
|
|
|
can be specified.
|
|
|
|
These options take zero or more usernames as parameters and perform the
|
|
|
|
appropriate operation on the SRP file.
|
2019-10-02 00:16:29 +08:00
|
|
|
For B<-list>, if no I<user> is given then all users are displayed.
|
2017-08-14 21:32:07 +08:00
|
|
|
|
|
|
|
The configuration file to use, and the section within the file, can be
|
|
|
|
specified with the B<-config> and B<-name> flags, respectively.
|
|
|
|
If the config file is not specified, the B<-srpvfile> can be used to
|
|
|
|
just specify the file to operate on.
|
|
|
|
|
|
|
|
The B<-userinfo> option specifies additional information to add when
|
|
|
|
adding or modifying a user.
|
|
|
|
|
2019-10-02 00:16:29 +08:00
|
|
|
The B<-gn> flag specifies the I<g> and I<N> values, using one of
|
2017-08-14 21:32:07 +08:00
|
|
|
the strengths defined in IETF RFC 5054.
|
|
|
|
|
|
|
|
The B<-passin> and B<-passout> arguments are parsed as described in
|
|
|
|
the L<openssl(1)> command.
|
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-help>
|
2017-08-14 21:32:07 +08:00
|
|
|
|
|
|
|
Display an option summary.
|
|
|
|
|
2019-09-26 03:20:11 +08:00
|
|
|
=item B<-verbose>
|
2017-08-14 21:32:07 +08:00
|
|
|
|
|
|
|
Generate verbose output while processing.
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2019-08-22 07:04:41 +08:00
|
|
|
Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.
|
2017-08-14 21:32:07 +08:00
|
|
|
|
2018-12-06 21:04:11 +08:00
|
|
|
Licensed under the Apache License 2.0 (the "License"). You may not use
|
2017-08-14 21:32:07 +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
|