Android 文件加密
一般选择 AES 和DES 。
组成:
Key 秘钥封装类, SecretKeySpec 产生
Cipher 一个是加密帮助类,一个是解密帮助类。唯一的不同的就是初始化的时候
mEncryptCipher = Cipher. getInstance( “DES”);
if ( mEncryptCipher != null )
{
mEncryptCipher.init(Cipher. ENCRYPT_MODE , mKey );
}
mDecryptCipher = Cipher. getInstance( “DES”);
if ( mDecryptCipher != null )
{
mDecryptCipher.init(Cipher. DECRYPT_MODE , mKey );
}