Tagged Questions
The cryptographichashfunction tag has no wiki summary.
7
votes
2answers
414 views
What is the difference between a multi-collision and a first or second pre-image attack on a hash function?
What is the difference between a multi-collision in a hash function and a first or second preimage.
First preimage attacks: given a hash h, find a message m such that
hash(m) = h.
Second preimage ...
4
votes
3answers
448 views
HMAC security - Is the security of the HMAC based on SHA-1 affected by the collisions attacks on SHA-1?
Is the security of the HMAC based on SHA-1 affected by the collisions attacks on SHA-1?
2
votes
2answers
140 views
Using a “slow” hash function with fewer iterations vs. a “fast” one with more?
Any benefit to using a slower hash function with fewer iterations vs. a fast one with more? Assuming you are attempting to protect a password..
2
votes
3answers
208 views
How to generate a hash string with some special rules in PHP?
I'm working on a project where I need to use some hash function to make a hash string. This hash string should be unique consists of 6 to 13 characters (fixed length).
I use a database to store data, ...
1
vote
2answers
80 views
SHA1 Hash algorithm issues
I'm attempting to store a user's password in my program, but I don't want to store it in plain text. Therefore, I'm hashing it and storing that instead, and when the user needs to enter his password ...
1
vote
2answers
316 views
How to decrypt the value
Actually I want to get the password back from the encrypted password.
The password is encrypted as follows:
MessageDigest md = MessageDigest.getInstance("SHA");
md.reset();
byte[] ...
1
vote
2answers
259 views
Collate Hash Function
In the local object there is a collate facet.
The collate facet has a hash method that returns a long.
http://www.cplusplus.com/reference/std/locale/collate/hash/
Two questions:
Does anybody know ...
0
votes
4answers
283 views
Client-side hashing/salting over HTTPS
I'm wondering what the serious issues are with the following setup:
Username/password login scheme
Javascript/ajax requests the salt value from the server (we have established in previous questions ...
-2
votes
3answers
100 views
Tiger Hash intermediate values
This isnt much of a programming question. its more of a reference question: does anyone know any programs/text files/whatever that show how the Tiger hash works? im trying to find some way to see the ...