diff --git a/kmip/pie/objects.py b/kmip/pie/objects.py index 882a95e..588aef5 100644 --- a/kmip/pie/objects.py +++ b/kmip/pie/objects.py @@ -674,6 +674,8 @@ class SymmetricKey(Key): key_wrapping_data(dict): A dictionary containing key wrapping data settings, describing how the key value has been wrapped. Optional, defaults to None. + app_specific_info(dict): A dictionary containing application_namespace and application_data. + Optional, defaults to None. """ super(SymmetricKey, self).__init__( key_wrapping_data=key_wrapping_data @@ -842,6 +844,8 @@ class PublicKey(Key): key_wrapping_data(dict): A dictionary containing key wrapping data settings, describing how the key value has been wrapped. Optional, defaults to None. + app_specific_info(dict): A dictionary containing application_namespace and application_data. + Optional, defaults to None. """ super(PublicKey, self).__init__( key_wrapping_data=key_wrapping_data @@ -1009,6 +1013,8 @@ class PrivateKey(Key): key_wrapping_data(dict): A dictionary containing key wrapping data settings, describing how the key value has been wrapped. Optional, defaults to None. + app_specific_info(dict): A dictionary containing application_namespace and application_data. + Optional, defaults to None. """ super(PrivateKey, self).__init__( key_wrapping_data=key_wrapping_data @@ -1600,6 +1606,8 @@ class SecretData(CryptographicObject): masks(list): A list of CryptographicUsageMask enumerations defining how the key will be used. name(string): The string name of the key. + app_specific_info(dict): A dictionary containing application_namespace and application_data. + Optional, defaults to None. """ super(SecretData, self).__init__()