コード例 #1
0
ファイル: RSATest.cs プロジェクト: Stoner19/Memory-Lifter
 public void EncryptData01()
 {
     RSA rSA;
     string s;
     rSA = new RSA();
     s = rSA.EncryptData("data", "");
 }
コード例 #2
0
ファイル: RSATest.cs プロジェクト: Stoner19/Memory-Lifter
 public void EncryptData03()
 {
     RSA rSA;
     string s;
     rSA = new RSA();
     s = rSA.EncryptData("data", (string)null);
 }
コード例 #3
0
ファイル: RSATest.cs プロジェクト: Stoner19/Memory-Lifter
 public void EncryptData02()
 {
     RSA rSA;
     string s;
     rSA = new RSA();
     s = rSA.EncryptData("data", "<invalidxml>");
 }
コード例 #4
0
ファイル: RSATest.cs プロジェクト: Stoner19/Memory-Lifter
 public void EncryptData04()
 {
     RSA rSA;
     string s;
     rSA = new RSA();
     s = rSA.EncryptData(null, rSA.GetPrivateKey());
 }