CryptosignAuthentication constructor

CryptosignAuthentication(
  1. SigningKey privateKey,
  2. String? channelBinding
)

This is the default constructor that will take an already gathered privateKey integer list to initialize the cryptosign authentication method.

Implementation

CryptosignAuthentication(this.privateKey, this.channelBinding) {
  if (channelBinding != null) {
    throw UnimplementedError('Channel binding is not supported yet!');
  }
}