COSE
The COSE
header defines enumerations and constants related to COSE messages. These definitions standardize the identification and handling of different COSE message components, ensuring consistent message formatting, parsing, and cryptographic operations across the system.
Enumerations:
COSETag Defines the various COSE message types by their corresponding tag values.
COSEHeaderLabel Defines standard header labels used within COSE messages.
Algorithm = 1
: Specifies the cryptographic algorithm.Critical = 2
: Indicates critical headers that must be understood by recipients.ContentType = 3
: Defines the content type of the payload.KeyIdentifier = 4
: Identifies the key used for signing or encryption.IV = 5
: Initialization Vector for encryption.PartialIV = 6
: Partial Initialization Vector.CounterSignature = 7
: Counter signature.CounterSignature0 = 9
: Alternate counter signature.
COSEAlgorithm Defines supported cryptographic algorithms for COSE message signing and encryption.
Last updated