By looking around here as well as the internet in general, I have found Bouncy Castle. I want to use Bouncy Castle (or some other freely available utility) to generate a SHA-256 Hash of a String in Java. Looking at their documentation I can't seem to find any good examples of what I want to do. Can anybody here help me out?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
If all you want to do is hash a string, I'd just use the built-in MessageDigest class.
Tada, |
|||||||||||||||||||||
|
|
This is already implemented in the runtime libs.
|
||||
|
|
|
When using hashcodes with any jce provider you first try to get an instance of the algorithm, then update it with the data you want to be hashed and when you are finished you call digest to get the hash value.
you can use the digest to get a base64 or hex encoded version according to your needs |
|||||||||||||
|
|
I suppose you are using a relatively old Java Version without SHA-256. So you must add the BouncyCastle Provider to the already provided 'Security Providers' in your java version.
|
|||
|
|