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