Skip to content

droidCrypter is a Java API crypter by which you can crypt and decrypt text without any key.

Notifications You must be signed in to change notification settings

idroid007/droidCrypter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

droidCrypter

droidCrypter is a Java API crypter by which you can crypt and decrypt text without any key.

How to Use:

->Add droidCrypt.jar to your project Build Path

->Create a Reference of IdroidCrypt interface with Crypter.getInstance() which provide Object for IdroidCrypt

    EX- IdroidCrypt idc = Crypter.getInstance();

->Two methods idc reference is provide us i.e public String cipher(String text) which encrypt the text and public String decipher(String encText) which decrypt the encrypted text.

    EX- String encText = idc.cipher("Hello this text is going to be encrypter");
         encText storing encType text 
         String normalText = idc.decipher(encText);
         normalText storing decrypted text

USES:

-> Transfer important information between two medium

-> Storing Confidential data in Database in encrypted form

-> Encryption of text in file

Implementation: I am not disclosing implementation at this point ;) just enjoy and say Thanks

About

droidCrypter is a Java API crypter by which you can crypt and decrypt text without any key.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published