Exemplo n.º 1
0
 public Asn1KeyWrapper(string algorithm, X509Certificate cert)
 {
     this.algorithm = algorithm;
     wrapper        = KeyWrapperUtil.WrapperForName(algorithm, cert.GetPublicKey());
 }
Exemplo n.º 2
0
 public Asn1KeyUnwrapper(string algorithm, ICipherParameters key)
 {
     this.algorithm = algorithm;
     wrapper        = KeyWrapperUtil.UnwrapperForName(algorithm, key);
 }