I'm working on a Java project in which I need to encrypt the plain text using SHA-256 bit encryption. I know the plain text & cipher text (of 64 digits). Can I find the key used for the encryption?
feedback
|
closed as not a real question by Jim Garrison, DNA, sleske, Eugene Mayevski 'EldoS Corp, GregS Feb 22 at 1:31
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
No, you can't, because there is no key. A hash algorithm takes some data and rearranges the bits through a well-defined sequence of operations (shifting, EOR-ing, etc). The same hash algorithm will always map the same input to the same output. If you know the input, output, and algorithm then you have everything there is to know. A hash algorithm (and especially a "secure" hash) isn't really encryption in any useful sense because you can't feasibly reverse it. | |||
|
feedback
|