/PictureEncryptor

Encrypt picture by using DES3 algorithm on Android.Android平台上一个基于DES3算法的图像加密工具

Primary LanguageJava

PictureEncryptor

Encrypt picture by using DES3 algorithm. Encrypt some bytes you prescribed with a string key you give.So it's fast to decrypt. ##Useage ###Encrypt

Byte []encryptedDrawableBytes = Encryptor.encrypt(drawable);

###Decrypt

Drawable result = Encryptor.decrypt(encryptedDrawableBytes);

###Change the key

Encryptor.setPasswordCryptKey("Your key")

###Get the key

String key = Encryptor.getPasswordCryptKey()