public void EncryptData01() { RSA rSA; string s; rSA = new RSA(); s = rSA.EncryptData("data", ""); }
public void EncryptData03() { RSA rSA; string s; rSA = new RSA(); s = rSA.EncryptData("data", (string)null); }
public void EncryptData02() { RSA rSA; string s; rSA = new RSA(); s = rSA.EncryptData("data", "<invalidxml>"); }
public void EncryptData04() { RSA rSA; string s; rSA = new RSA(); s = rSA.EncryptData(null, rSA.GetPrivateKey()); }