Пример #1
0
 internal static string Encrypt(string data)
 {
     Gmis.Protection.DataProtection rsaPro=new Gmis.Protection.DataProtection();
     rsaPro.PublicKey=RSAPublicKey;
     string strData=rsaPro.EncryptText(data);
     return strData;
 }
Пример #2
0
        internal static string Encrypt(string data)
        {
            Gmis.Protection.DataProtection rsaPro = new Gmis.Protection.DataProtection();
            rsaPro.PublicKey = RSAPublicKey;
            string strData = rsaPro.EncryptText(data);

            return(strData);
        }