mirror of https://github.com/OpenKMIP/PyKMIP.git
Merge pull request #34 from callidus/bug-fixes
A few bug fixes in objects
This commit is contained in:
commit
5025925388
|
@ -571,7 +571,7 @@ class EncodingOption(Enumeration):
|
|||
ENUM_TYPE = enums.EncodingOption
|
||||
|
||||
def __init__(self, value=None):
|
||||
super(WrappingMethod, self).__init__(value, Tags.ENCODING_OPTION)
|
||||
super(EncodingOption, self).__init__(value, Tags.ENCODING_OPTION)
|
||||
|
||||
|
||||
class KeyInformation(Struct):
|
||||
|
@ -580,8 +580,7 @@ class KeyInformation(Struct):
|
|||
unique_identifier=None,
|
||||
cryptographic_parameters=None,
|
||||
tag=Tags.ENCRYPTION_KEY_INFORMATION):
|
||||
super(KeyInformation, self).__init__(
|
||||
tag=Tags.ENCRYPTION_KEY_INFORMATION)
|
||||
super(KeyInformation, self).__init__(tag=tag)
|
||||
self.unique_identifier = unique_identifier
|
||||
self.cryptographic_parameters = cryptographic_parameters
|
||||
self.validate()
|
||||
|
|
Loading…
Reference in New Issue