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