You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MyEncrypt and MyDecrypt Java programs work together to encrypt and decrypt files. DES encryption is used, with DES/ECB/PKCS5Padding options.
MyEncrypt accepts a file and a password. It encrypts the data and stores it in a binary file called encrypt.bin.
MyDecrypt accepts a file generated by MyEncrypt, along with the password used by MyEncrypt. It decrypts the data and writes it to a binary file called decrypt.bin.