Beispiel #1
0
        public string des_decode(string text)
        {
            des    h = new des();
            string decryptedstring = h.decode(text);

            return(decryptedstring);
        }
Beispiel #2
0
        public string des_encode(string text)
        {
            des    h = new des();
            string encryptedstring = h.encode(text);

            return(encryptedstring);
        }