Tagged Questions
The message-digest tag has no wiki summary.
11
votes
6answers
412 views
When is it safe to use a broken hash function?
It is trivial to use a secure hash function like SHA256 and continuing to use md5 for security is reckless behavior. However, there are some complexities to hash function vulnerabilities that I ...
7
votes
2answers
2k views
What's the difference between Message Digest, Message Authentication Code, and HMAC?
My understanding of a message digest is that it's an encrypted hash of some data sent along with the encrypted data so you may verify that the data has not been tampered with. What is the difference ...
6
votes
6answers
303 views
construct a unique number for a string in java
We have a requirement of reading/writing more than 10 million strings into a file. Also we do not want duplicates in the file. Since the strings would be flushed to a file as soon as they are read we ...
5
votes
4answers
4k views
c# fast hash calculation
I'm looking for a c# wrapper to a native MD5 or SHA1 library to improve hash calculation performance.
Previously I switched SharpZipLib to zlib and got more than 2x performance boost. (ok, you've to ...
2
votes
3answers
210 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 ...
2
votes
1answer
353 views
Java equivalent for PHP's pack function
I have a sample application which generates a SHA1 hash in PHP as follows.
base64_encode(pack('H*', sha1($pass)));
I tried to achieve the same in Java, but so far, the output is different. The ...
2
votes
3answers
295 views
protocol to use password hashing with salt
I am trying to understand what information are needed to be sent in a web application . Basically I have a web app running on a web server , a database which has a user table with hashed password and ...
2
votes
2answers
199 views
Get sha1 message digest from plaintext+private key in delphi
I want to create a Sha1 message digest, and it should use my private key as input along with the plain text.
Everything I have found so far either dont use a private key or just take a lot of ...
2
votes
2answers
190 views
Collision Attacks, Message Digests and a Possible solution
I've been doing some preliminary research in the area of message digests. Specifically collision attacks of cryptographic hash functions such as MD5 and SHA-1, such as the Postscript example and X.509 ...
1
vote
1answer
60 views
Is there a way to shorten a java.security.MessageDigest generated value?
If I generate a message digest (for a security feature in my app) using this Java code:
java.security.MessageDigest saltDigest = MessageDigest.getInstance("SHA-256");
...
1
vote
3answers
346 views
How to set MessageDigest seed?
The MessageDigest class implements the SHA-1 algorithm (among many others). The SHA-1 algorithm allows one to use different "seeds" or initial digests. See SHA-1 Psuedocode
The algorithm ...
0
votes
1answer
33 views
S/MIME verification with x509 certificate
I have some problems with verifying S/Mime signed message with x509 certificate. This is my code:
public class verifyMsg {
private static void verify(SMIMESignedParser s) throws Exception {
...
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
0answers
27 views
no Digested-data class in Bouncy Castle 1.46
I found that in Bouncy Castle latest version 1.46, the Digested-data class in CMS package no longer exists. But BC has such class in old version 1.12, as in the link below:
...
0
votes
1answer
129 views
HMAC-Whirlpool implementation in Android
Has anyone implemented or using Hmac-Whirlpool on Android phone?
I found whirlpool.java on internet but default security provider in Android SDK seems not to have Whirlpool nor Hmac-Whirlpool.
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
1answer
128 views
Is there's a hexToString implemented method in Java for Hashing?
I'm working in a little method that hashes a String. Looking for information, I could find that MessageDigest can help me to make this task, here
Java Compute SHA-1
But now I have a question. It ...
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 ...