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:
@@ -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__()
|
||||
|
||||
Reference in New Issue
Block a user