CryptosignAuthentication.fromBase64 constructor

CryptosignAuthentication.fromBase64(
  1. String base64PrivateKey
)

Implementation

factory CryptosignAuthentication.fromBase64(String base64PrivateKey) {
  return CryptosignAuthentication(
    SigningKey.fromSeed(base64.decode(base64PrivateKey)),
    null,
  );
}