From 6bf55b98f539eb8f980ea95ec961f971c10b1978 Mon Sep 17 00:00:00 2001 From: Grace Lombardi Date: Thu, 14 Jul 2022 10:16:56 -0400 Subject: [PATCH] Added app_specific_info to init comments --- kmip/pie/objects.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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__()