Beispiel #1
0
        string decryptChar(long encryptedChar)
        {
            encryptedChar /= encryptionKey;
            CryptDictionary dict = new CryptDictionary();

            return(dict.DecryptionDict()[encryptedChar]);
        }
Beispiel #2
0
        long encryptCharacter(char ch) // Encrypt a character
        {
            string          _ch  = ch.ToString().ToLower();
            CryptDictionary dict = new CryptDictionary();

            return(dict.encryptionDict()[_ch]);
        }