2
0
mirror of https://github.com/openkmip/pykmip synced 2025-12-16 00:04:26 +00:00

Updated app specific info to be a list of dictionaries, removed unneeded sudo in run.sh, updated server.conf to remove db, updated tests and comments to reflect app specific info being a list

This commit is contained in:
Grace Lombardi
2022-07-18 08:45:20 -04:00
committed by arp102
parent 6bf55b98f5
commit 0a3e39143f
5 changed files with 67 additions and 32 deletions

View File

@@ -674,7 +674,7 @@ 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.
app_specific_info(list): A list of dictionaries containing application_namespace and application_data.
Optional, defaults to None.
"""
super(SymmetricKey, self).__init__(
@@ -844,7 +844,7 @@ 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.
app_specific_info(list): A list of dictionaries containing application_namespace and application_data.
Optional, defaults to None.
"""
super(PublicKey, self).__init__(
@@ -1013,7 +1013,7 @@ 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.
app_specific_info(list): A list of dictionaries containing application_namespace and application_data.
Optional, defaults to None.
"""
super(PrivateKey, self).__init__(
@@ -1606,7 +1606,7 @@ 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.
app_specific_info(list): A list of dictionaries containing application_namespace and application_data.
Optional, defaults to None.
"""
super(SecretData, self).__init__()