This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Android Encryption/Decryption Functions with PBKDF2/SHA1 & AES & Persistent Initialization Vector Storage in Shared Preferences | |
* | |
* The encryption initialization vector is stored in the Shared Preferences area so the decrypt function below can be used to decrypt | |
* data that was encrypted by a previous instance of an app using the encrypt function below. | |
* | |
* September 10 2014 | |
* | |
*/ |