mirror of
https://github.com/openkmip/pykmip
synced 2025-12-18 17:23:52 +00:00
Rename the CertificateTypeEnum enum to CertificateType
This change renames the CertificateTypeEnum enumeration to CertificateType, matching the naming schemes of all other enumerations. This is a backwards incompatible change and will break any scripts or programs that use the current CertificateTypeEnum name.
This commit is contained in:
@@ -24,7 +24,7 @@ from kmip.core.enums import AttributeType
|
||||
from kmip.core.enums import CryptographicAlgorithm as CryptoAlgorithmEnum
|
||||
from kmip.core.enums import CryptographicUsageMask
|
||||
from kmip.core.enums import KeyFormatType as KeyFormatTypeEnum
|
||||
from kmip.core.enums import CertificateTypeEnum
|
||||
from kmip.core.enums import CertificateType
|
||||
from kmip.core.enums import NameType
|
||||
from kmip.core.enums import ObjectType
|
||||
from kmip.core.enums import OpaqueDataType
|
||||
@@ -838,7 +838,7 @@ class TestIntegration(TestCase):
|
||||
cert_template_attribute = TemplateAttribute(
|
||||
attributes=cert_attributes)
|
||||
|
||||
cert_format_type = CertificateTypeEnum.X_509
|
||||
cert_format_type = CertificateType.X_509
|
||||
|
||||
cert_data = (
|
||||
b'\x30\x82\x03\x12\x30\x82\x01\xFA\xA0\x03\x02\x01\x02\x02\x01\x01'
|
||||
|
||||
Reference in New Issue
Block a user