CryptosignAuthentication constructor
CryptosignAuthentication(
- SigningKey privateKey,
- 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!');
}
}