ECC Signature Data Structure Definition
Field Name |
Data Length (Byte) |
Description |
|---|---|---|
r |
ECCref_MAX_LEN |
r part of the signature. |
s |
ECCref_MAX_LEN |
s part of the signature. |
Actual data structure definition:
typedef struct ECCSignature_st {
unsigned char r[ECCref_MAX_LEN];
unsigned char s[ECCref_MAX_LEN];
} ECCSignature;
Parent topic: Data Structures