Sign and Verify Data by DID Document
DID Document can sign data on behalf of DID, so DID Document provides methods for signing and verification.
Usage
This method uses the specified keyid of document to sign the data, and the signed data is saved in the memory sig given by the user.
If the keyid is NULL, it defaults to use the Default Key; sig is memory of MAX _ SIGNATURE _ LEN size.
This method inputs the data to be signed by changing parameters, and count is the number of data.
If the return value is 0, the signing is successful; if it's -1, the signing is failed.
This method signs the digest. digest is the memory for saving abstracts, and size is the size of the memory for saving abstracts.
The memory provided by sig for users to save signature data.
This method is used for TransferTicket multi-signature. According to the multi-signature rule of Customized DID Document, it is used for the second and later Controller DID Document signature. The example application can be seen in Transfer DID:
This method verifies the signature of the digest. If the keyid is NULL, the Default Key will be used by default.
This method is used to verify the signature, keyid, sig and the input data, which will fail if they do not match, and mainly prevent the data from being tampered with.
Last updated