signHash static method
Signs a message hash using EdDSA
messageHash - The hash of the message to sign
privateKey - The private key to sign with
Returns an EdDSASignature object
Implementation
static EdDSASignature signHash(Uint8List messageHash, Uint8List privateKey) {
return _signHash(messageHash, privateKey);
}