mirror of https://github.com/OpenKMIP/PyKMIP.git
Merge pull request #386 from gaurav36/small-typo-help-message
Fix help text for the CreateKeyPair demo
This commit is contained in:
commit
7743c4ea6b
|
@ -373,11 +373,11 @@ CreateKeyPair
|
|||
~~~~~~~~~~~~~
|
||||
The CreateKeyPair operation is used to create asymmetric key pairs.
|
||||
|
||||
========== ==========
|
||||
========== ===============
|
||||
Algorithm Key Sizes
|
||||
========== ==========
|
||||
RSA 1024, 2048
|
||||
========== ==========
|
||||
========== ===============
|
||||
RSA 512, 1024, 2048
|
||||
========== ===============
|
||||
|
||||
All users are allowed to create asymmetric keys. There are no quotas currently
|
||||
enforced by the server.
|
||||
|
|
|
@ -112,7 +112,7 @@ def build_cli_parser(operation=None):
|
|||
type="str",
|
||||
default=None,
|
||||
dest="algorithm",
|
||||
help="Encryption algorithm for the secret (e.g., AES)")
|
||||
help="Encryption algorithm for the secret (e.g., RSA)")
|
||||
parser.add_option(
|
||||
"-l",
|
||||
"--length",
|
||||
|
@ -120,7 +120,7 @@ def build_cli_parser(operation=None):
|
|||
type="int",
|
||||
default=None,
|
||||
dest="length",
|
||||
help="Key length in bits (e.g., 128, 256)")
|
||||
help="Key length in bits (e.g., 512, 1024, 2048)")
|
||||
parser.add_option(
|
||||
"-n",
|
||||
"--name",
|
||||
|
|
Loading…
Reference in New Issue