コード例 #1
0
        public static string FromEncryptedString(string str)
        {
            GenericEncryption obj        = new GenericEncryption(str, 0);
            string            decodedStr = obj.Decode();

            return(decodedStr);
        }
コード例 #2
0
        public static string FromString(string str, int inMiddleCharsStrength = 0)
        {
            GenericEncryption obj        = new GenericEncryption(str, inMiddleCharsStrength);
            string            encodedStr = obj.Encode();

            return(encodedStr);
        }