sign method

Uint8List sign(
  1. Uint8List hash
)

Implementation

Uint8List sign(Uint8List hash) {
  return ecc.sign(hash, privateKey!);
}