sign method
Signs the provided hash
with the private key
Implementation
Uint8List sign(Uint8List hash) {
return ecc.sign(hash, privateKey);
}
Signs the provided hash
with the private key
Uint8List sign(Uint8List hash) {
return ecc.sign(hash, privateKey);
}