LitDev.LDEncryption.AESEncrypt C# (CSharp) Method

AESEncrypt() public static method

Encrypt some text using AES encryption and a password key. The encrypted test can be saved to a file. Note that if you forget the password there is NO WAY to decrypt!
public static AESEncrypt ( Primitive source, Primitive password ) : Primitive
source Primitive The text to encrypt.
password Primitive The password key for the encryption.
return Primitive
        public static Primitive AESEncrypt(Primitive source, Primitive password)
        {
            return StringEncryption.EncryptString(source, password);
        }