mirror of
https://github.com/openkmip/pykmip
synced 2025-12-15 07:43:26 +00:00
Add necessary objects/attributes and payloads for MAC operation
This commit is contained in:
@@ -1216,6 +1216,20 @@ class ExtensionInformation(Struct):
|
||||
extension_type=extension_type)
|
||||
|
||||
|
||||
# 2.1.10
|
||||
class Data(ByteString):
|
||||
|
||||
def __init__(self, value=None):
|
||||
super(Data, self).__init__(value, Tags.DATA)
|
||||
|
||||
|
||||
# 2.1.13
|
||||
class MACData(ByteString):
|
||||
|
||||
def __init__(self, value=None):
|
||||
super(MACData, self).__init__(value, Tags.MAC_DATA)
|
||||
|
||||
|
||||
# 3.31, 9.1.3.2.19
|
||||
class RevocationReasonCode(Enumeration):
|
||||
|
||||
|
||||
Reference in New Issue
Block a user