Class swarmauri_signing_dsse.types.DSSESignatureRecord
swarmauri_signing_dsse.types.DSSESignatureRecord
dataclass
DSSESignatureRecord(sig, keyid=None, cert=None)
Represent a DSSE signature record in the JSON envelope.
sig
instance-attribute
sig
keyid
class-attribute
instance-attribute
keyid = None
cert
class-attribute
instance-attribute
cert = None
from_mapping
classmethod
from_mapping(data)
Construct a signature record from a mapping.
Source code in swarmauri_signing_dsse/types.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
|
to_mapping
to_mapping()
Return the JSON-serializable mapping representation.
Source code in swarmauri_signing_dsse/types.py
41 42 43 44 45 46 47 48 49 |
|