Argentini.Halide.H3Secure.TinyDecrypt C# (CSharp) 메소드

TinyDecrypt() 공개 정적인 메소드

Decrypt a string encrypted with TinyEncrypt. Ideal for passing parameters on a URL. If you need strong encryption, do not use this method.
public static TinyDecrypt ( string input ) : String
input string Encrypted string value to decrypt.
리턴 String
        public static String TinyDecrypt(string input)
        {
            return (EncryptDecrypt(Base64StringDecode(input)));
        }