예제 #1
0
파일: AesCng.cs 프로젝트: ESgarbi/corefx
 public AesCng()
 {
     _core = new CngSymmetricAlgorithmCore(this);
 }
예제 #2
0
파일: AesCng.cs 프로젝트: ESgarbi/corefx
 public AesCng(string keyName, CngProvider provider, CngKeyOpenOptions openOptions)
 {
     _core = new CngSymmetricAlgorithmCore(this, keyName, provider, openOptions);
 }
예제 #3
0
 public TripleDESCng()
 {
     _core = new CngSymmetricAlgorithmCore(s_Algorithm, this);
 }