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?

link|improve this question

5  
sha1 does not use a key to cipher. Its a hash algorithm. Not a unique key atleast. I mean, you don't use a key and plain-text to get an sha hash – Somesh Mukherjee Feb 21 at 4:54
SHA-256 is a publicly known algorithm which doesn't use a key as Somesh pointed out. I am assuming this is for an assignment, and you were likely given the ciphertext so you knew what the correct answer is. Are you supposed to be implementing SHA-256? – Hunter McMillen Feb 21 at 5:01
@HunterMcMillen, oh, ya I need implementation too – Dinesh Feb 21 at 5:06
1  
@Dinesh What have you tried? – Hunter McMillen Feb 21 at 5:06
One could use SHA256 to construct a stream cipher similar to how CTR mode works. But there several ways to do that. And like CTR mode it needs a nonce, or otherwise key reuse is fatal. – CodeInChaos Feb 21 at 19:27
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.

1 Answer

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.

link|improve this answer
feedback

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