2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-14 23:33:19 +00:00

Adding support for the DiscoverVersions operation

This change adds support for the DiscoverVersions operation, including
updates to the KMIP client, the client and KMIP core test suites, and a
DiscoverVersions unit demo.
This commit is contained in:
Peter Hamilton
2015-01-23 15:26:28 -05:00
parent 7ce5a74315
commit f6b420d2db
15 changed files with 923 additions and 55 deletions

View File

@@ -119,6 +119,8 @@ def build_cli_parser(operation):
default=None,
dest="length",
help="Key length in bits (e.g., 128, 256)")
elif operation is Operation.DISCOVER_VERSIONS:
pass
else:
raise ValueError("unrecognized operation: {0}".format(operation))