Encryption (deprecated)
Methods
encrypt (deprecated)
encrypt(text: string, key: string)encrypt(text: string, key: string)// Encrypts a string using the AES algorithm:
Encryption.encrypt('my secret text', 'my secret key')decrypt(text: string, key: string)// Decrypts a string using the AES algorithm:
Encryption.decrypt('my encrypted text', 'my secret key')