Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.txt | 2009-12-26 | 871 Bytes | |
CryptLibME_V1.0.zip | 2009-12-26 | 17.7 kB | |
Totals: 2 Items | 18.6 kB | 0 |
************************************** ** CryptLibME - By Paulo H Campos ** ************************************** Version 1.0 For now, only blowfish encryption is available. I'll also include DES, TripleDES, AES, and more in future releases. Quick start guide: //Instatiate the BlowfishEasy class with at least a 4 char password. //Less than 4 char is also accepted but I personally don't think is a good idea. BlowfishEasy be = new BlowfishEasy("phcf".getBytes()); // Create a string to hold the encrypted data and use one of the encryptString() methods String crypt = be.encryptString(str); // This is the easyer to use! =) // Create a string to hold the decrypted data and use one of the decryptString() methods String decrypt = be.decryptString(crypt); Ok, now you know everithyng you need! Happy Crypting!!! =)