LitDev.LDEncryption.AESDecrypt C# (CSharp) Method

AESDecrypt() public static method

Decrypt an AES encrypted cypher (previously encrypted) using a password key.
public static AESDecrypt ( Primitive cypher, Primitive password ) : Primitive
cypher Primitive The encrypted text (cypher).
password Primitive The password key for the encryption.
return Primitive
        public static Primitive AESDecrypt(Primitive cypher, Primitive password)
        {
            return StringEncryption.DecryptString(cypher, password);
        }