CryptosignAuthentication.fromHex constructor
CryptosignAuthentication.fromHex(
- String? hexPrivateKey
Implementation
factory CryptosignAuthentication.fromHex(String? hexPrivateKey) {
return CryptosignAuthentication(
SigningKey.fromSeed(hexToBin(hexPrivateKey)),
null,
);
}