CryptosignAuthentication.fromHex constructor

CryptosignAuthentication.fromHex(
  1. String? hexPrivateKey
)

Implementation

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