Merge pull request #386 from gaurav36/small-typo-help-message

Fix help text for the CreateKeyPair demo
This commit is contained in:
Peter Hamilton 2018-03-08 08:56:51 -05:00 committed by GitHub
commit 7743c4ea6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -373,11 +373,11 @@ CreateKeyPair
~~~~~~~~~~~~~ ~~~~~~~~~~~~~
The CreateKeyPair operation is used to create asymmetric key pairs. The CreateKeyPair operation is used to create asymmetric key pairs.
========== ========== ========== ===============
Algorithm Key Sizes Algorithm Key Sizes
========== ========== ========== ===============
RSA 1024, 2048 RSA 512, 1024, 2048
========== ========== ========== ===============
All users are allowed to create asymmetric keys. There are no quotas currently All users are allowed to create asymmetric keys. There are no quotas currently
enforced by the server. enforced by the server.

View File

@ -112,7 +112,7 @@ def build_cli_parser(operation=None):
type="str", type="str",
default=None, default=None,
dest="algorithm", dest="algorithm",
help="Encryption algorithm for the secret (e.g., AES)") help="Encryption algorithm for the secret (e.g., RSA)")
parser.add_option( parser.add_option(
"-l", "-l",
"--length", "--length",
@ -120,7 +120,7 @@ def build_cli_parser(operation=None):
type="int", type="int",
default=None, default=None,
dest="length", dest="length",
help="Key length in bits (e.g., 128, 256)") help="Key length in bits (e.g., 512, 1024, 2048)")
parser.add_option( parser.add_option(
"-n", "-n",
"--name", "--name",