mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
b6b66573bd
Initially, the manual page entry for the 'openssl cmd' command used to be available at 'cmd(1)'. Later, the aliases 'openssl-cmd(1)' was introduced, which made it easier to group the openssl commands using the 'apropos(1)' command or the shell's tab completion. In order to reduce cluttering of the global manual page namespace, the manual page entries without the 'openssl-' prefix have been deprecated in OpenSSL 3.0 and will be removed in OpenSSL 4.0. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9666)
73 lines
1.7 KiB
Plaintext
73 lines
1.7 KiB
Plaintext
=pod
|
|
|
|
=head1 NAME
|
|
|
|
openssl-srp - maintain SRP password file
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
B<openssl srp>
|
|
[B<-help>]
|
|
[B<-verbose>]
|
|
[B<-add>]
|
|
[B<-modify>]
|
|
[B<-delete>]
|
|
[B<-list>]
|
|
[B<-name section>]
|
|
[B<-config file>]
|
|
[B<-srpvfile file>]
|
|
[B<-gn identifier>]
|
|
[B<-userinfo text...>]
|
|
[B<-passin arg>]
|
|
[B<-passout arg>]
|
|
[I<user...>]
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
The B<srp> command is used to maintain an SRP (secure remote password)
|
|
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.
|
|
For B<-list>, if no B<user> is given then all users are displayed.
|
|
|
|
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.
|
|
|
|
The B<-gn> flag specifies the B<g> and B<N> values, using one of
|
|
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
|
|
|
|
=item [B<-help>]
|
|
|
|
Display an option summary.
|
|
|
|
=item [B<-verbose>]
|
|
|
|
Generate verbose output while processing.
|
|
|
|
=back
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
Copyright 2017-2019 The OpenSSL Project Authors. All Rights Reserved.
|
|
|
|
Licensed under the Apache License 2.0 (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
|