I am working in one app where i need to implement the decryption of conversation.The conversations are encrypted using MD5 algorithm. I don't have any idea regarding this.
Could anybody help me out.thanks in advance!!!
I am working in one app where i need to implement the decryption of conversation.The conversations are encrypted using MD5 algorithm. I don't have any idea regarding this.
Could anybody help me out.thanks in advance!!!
First off, you'll have to know what encryption is used exactly.
A range of cryptographic algorithms is implemented in Android's Cipher class. If it's not in there, you'll have to find a third party implementation or roll your own.
Here you can see a simle encrypt/decrypt program using AES128 algorithm. If you search you can find plenty of so answers too lik this.
For md5 you can use java.security.MessageDigestSpi class. you can check any of these examples. I didn't try these examples so you need to verify :)
But first of all study over encrytpion algorithms, hashing to learn the basics