vote up 1 vote down star

Hi guys.

Please help me the code (Java) to encrypt and decrypt ( will be better if using private key) with SHA256. ^^

Thank you so much!

flag

33% accept rate

4 Answers

vote up 4 vote down

The Secure Hash Algorithm family of functions are one-way functions. You can use the functions to get a cryptographic hash from any given input, but it is impossible to reverse the function and arrive at the input from any given output hash.

link|flag
vote up 2 vote down

SHA-256 is a one way algorithm, it cannot be decrypted!

link|flag
vote up 3 vote down

I think you're confused about what SHA is. SHA is a Cryptographic Hash Function, not an encryption algorithm. You can't reverse the operation to determine the message that was used to generate a particular hash.

link|flag
vote up 3 vote down

There have actually been several techniques proposed for turning hash functions into block ciphers that can encrypt and decrypt - for example Peter Gutmann's "Message Digest Cipher".

This paper has some cryptanalysis of some of these techniques.

But you really don't want to do this - you are far better off using a well-studied block cipher, like AES.

link|flag
+1 for suggesting an appropriate alternative – aardvark Aug 12 at 3:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.