mirror of
https://github.com/openkmip/pykmip
synced 2026-01-04 01:23:25 +00:00
Adding support for the Certificate managed object
This change polishes and reorganizes the implementation of the Certificate managed object and its required subclasses. It adds in documentation and test suites for all modified classes and updates the SecretFactory to support creating default Certificate objects.
This commit is contained in:
@@ -349,7 +349,12 @@ class WrappingMethod(Enum):
|
||||
|
||||
|
||||
# 9.1.3.2.6
|
||||
class CertificateType(Enum):
|
||||
class CertificateTypeEnum(Enum):
|
||||
"""
|
||||
The type of a Certificate Managed Object.
|
||||
|
||||
For more information, see Section 2.2.1 of the KMIP 1.1 specification.
|
||||
"""
|
||||
X_509 = 0x00000001
|
||||
PGP = 0x00000002
|
||||
|
||||
|
||||
Reference in New Issue
Block a user