KeyMaterial
Properties
Name |
Type |
Description |
Notes |
crypto_alg |
str |
|
|
curve |
str |
|
|
dh_public_key |
KeyObject |
|
|
nonce |
str |
|
|
Example
from abdm.models.key_material import KeyMaterial
# TODO update the JSON string below
json = "{}"
# create an instance of KeyMaterial from a JSON string
key_material_instance = KeyMaterial.from_json(json)
# print the JSON string representation of the object
print(KeyMaterial.to_json())
# convert the object into a dict
key_material_dict = key_material_instance.to_dict()
# create an instance of KeyMaterial from a dict
key_material_from_dict = KeyMaterial.from_dict(key_material_dict)
[Back to Model list] [Back to API list] [Back to README]