Questions tagged [whirlpool]

Whirlpool is a cryptographic hash function designed by Rijmen and Barreto.

Whirlpool (sometimes styled WHIRLPOOL) is a cryptographic hash function. It was designed by Vincent Rijmen (co-creator of the Advanced Encryption Standard) and Paulo S. L. M. Barreto, who first described it in 2000. The hash has been recommended by the NESSIE project. It has also been adopted by the International Organization for Standardization (ISO) and the International Electrotechnical Commission (IEC) as part of the joint ISO/IEC 10118-3 international standard.

28 questions
0
votes
0 answers

Node.js - hash alghoritms implementation

I have a question, is there any module that contains implementations of all hashing algorithms? I mainly care about MD5, SHA-256 and Whirlpool. I heard about the crypto module, but I can't find if it has the Whirlpool algorithm. If there is a…
0
votes
0 answers

Can't create a digest with whirlpool

I would like to create a whirlpool-digest with a program like this: #include #include char sData[] = "test string"; int main(int argc, char *argv[]) { const EVP_MD *digest_type = EVP_whirlpool(); EVP_MD_CTX …
user1479670
  • 1,145
  • 3
  • 10
  • 22
0
votes
1 answer

Python installing whirlpool without C++ BuildTools

I'm trying to install whirlpool package with pip but it gives Microsoft Visual C++ 14.0 is required errorI tried pip install whirlpool --only-binary=:all: but gives same error.I also searched for whirlpool unofficial binary file but I don't find…
PokerFaCe
  • 329
  • 2
  • 11
0
votes
1 answer

validating password with salt and sha512whirlpool in mysql

What would the SQL statement be to validate a password if the MySql table that looks like this: user_id password salt ------- -------- ---- 1 23ed2... m9f3m... I tried: select * from password_table where user_id = 1 and…
lilbiscuit
  • 2,109
  • 6
  • 32
  • 53
0
votes
1 answer

C# INSERT ERROR MYSQL Server Version For the Right Syntax to user near

This is my error You have an error in your SQL syntax; check the manual that corresponds to your MySql server version for the right syntax to use near 'Key) VALUES ('biaprot','4E0658D00F47D86D19A0E792E...' at line 1. My code : private bool…
0
votes
0 answers

Java Whirlpool to PHP

My application made in Java uses Whirlpool to hash a password. Now I need to use the same method with PHP. This is the code I've made with Java: private String getPasswordHash(String user, String password) { String salt =…
0
votes
1 answer

Finding similar hashes

I'm trying to find 2 different plain text words that create very similar hashes. I'm using the hashing method 'whirlpool', but I don't really need my question to be answered in the case or whirlpool, if you can using md5 or something easier that's…
JGreen
  • 11
  • 1
0
votes
2 answers

Java and Php returns different hashes

So, PHP code: $result = hash("whirlpool","xxx".$password."zzz"); JAVA: import gnu.crypto.Registry; import gnu.crypto.hash.HashFactory; import gnu.crypto.hash.IMessageDigest; public class WhirlpoolHash { String result; …
Maxim Pavlov
  • 195
  • 1
  • 1
  • 10
0
votes
1 answer

How to check if the user entered the password that matches the whirlpool hash?

I just recently began looking into password encryption. My current code looks like this :
user3483494
0
votes
1 answer

Java Whirlpool hashing

I found myself in the need to hash something in Java and as I don't understand hashing I'm here. I already found that there's no simple method for it. So my question: how is whirlpool hashing done in Java? EDIT: I was suggested GNU Whirlpool, but I…
Justas S
  • 584
  • 4
  • 12
  • 34
0
votes
1 answer

Which one is more secured md5 or whirlpool (hashes) and Why?

I am very much new in this cryptography section. I want to raise a question here regarding md5 hashes and whirlpool hashes. So far I have found that md5 can be broken and hence it is not safe to use. I also learned a little bit about whirlpool…
Zawad
  • 1
  • 2
0
votes
1 answer

The maximum length of a message that can be hashed with WHIRLPOOL

I'm just wondering what is the maximum length. I read from Wikipedia that it takes a message of any length less than 2^256 bits. Does that mean 2 to the power of 256? Also, would it be more secure to hash a password multiple times?…
Stylock
  • 1,459
  • 2
  • 12
  • 14
0
votes
3 answers

Compare or view hashed passwords in PHP

I have the following PHP script to hash a user's password which it does, HOWEVER, when I try to compare the hashed variable to the original password, it returns false. $hash=hash("whirlpool","hello"); if("hello"===$hash){echo "TRUE";} else{echo…
Stephen Cioffi
  • 1,161
  • 2
  • 13
  • 32
1
2