public static string FromEncryptedString(string str)
        {
            GenericEncryption obj        = new GenericEncryption(str, 0);
            string            decodedStr = obj.Decode();

            return(decodedStr);
        }