/JAVA_EncyDeCryption

A simple Encryption-Decryption example using JAVA

Primary LanguageJava

JAVA_EncyDeCryption

A simple Encryption-Decryption example using JAVA

Discription---------------------------------------------------------------------------------

A string of password is converted into ascii code. ascii code is converted into binary. binary code is converted into some patterns of cherechters.

How to use----------------------------------------------------------------------------------

TO ENCRYPT: call static method encrypt() with class name - ClassName.encrypt(String YourPassword); pass your password in argument and it will return a string of encrypted password.

TO DECRYPT: call static method decrypt() with class name - ClassName.decrypt(String EncryptedPassword); pass your encrypted password in argument and it will return a string of original password.