Tagged Questions
2
votes
3answers
209 views
will java messagedigest generated different MD5 hash on different jdk version?
I am using java message digest to create MD5 hash, which is used for authentication. The MD5 hash is stored in the database as varchar2. I did a test to create a user on my tomcat server on my local ...
0
votes
3answers
64 views
How is an MD5 or SHA-X hash different from an encryption?
I've read a couple times that MD5 is not an encryption, e.g. on MD5 ... Encryption? or Command Line Message Digest Utility.
Well, I get that it's a hash/message digest, and the explanation in the ...
0
votes
1answer
71 views
Do I need to pass the MessageDigest object from register to login?
Ok, I'm a little confused. I'm trying to use MessageDigest to store my passwords in the database as MD5 hashes, and then pull the hash out to check a user's password when they try to log in.
So, when ...
0
votes
2answers
91 views
Verifying file digests
Say I have 'n' number of files, for each of which I have CRC32, MD5 and SHA1 digests
Now these 'n' number of files are actually split files/archives of single large file.
When these smaller files ...