예제 #1
0
 public U2fException(string message, InvalidKeySpecException invalidKeyException)
     : base(message, invalidKeyException?.InnerException)
 {
     Console.WriteLine("Error verifying signature:{0} invalid key exception:{1}", message, invalidKeyException);
 }
예제 #2
0
 public U2fException(string errorWhenVerifyingSignature, InvalidKeySpecException invalidKeyException)
 {
     Console.WriteLine("Error verifying signature:{0} invalid key exception:{1}", errorWhenVerifyingSignature, invalidKeyException);
 }