Questions tagged [argon2-ffi]

Argon2 is a hashing algorithm, primarily for password hashing. Use with specific language tags for questions regarding implementation

Argon2 is a hashing algorithm designed for the Password Hashing Competition, which it ultimately won. From the GitHub repository

Argon2 is a password-hashing function that summarizes the state of the art in the design of memory-hard functions and can be used to hash passwords for credential storage, key derivation, or other applications.

It has a simple design aimed at the highest memory filling rate and effective use of multiple computing units, while still providing defense against tradeoff attacks (by exploiting the cache and memory organization of the recent processors).

Argon2 has been implemented in a number of programming languages. Questions should pertain to using it within those languages.

78 questions
-1
votes
1 answer

Force Argon2 to return the value of p with a specific length

I am using de.mkammerer.argon2 library (Java) to encode a string using Argon2 algorithm. I am using the advanced interface of Argon2 as I need to provide a few config params such as fixed salt and fixed hash length. The thing I am failing to achieve…
Aisatora
  • 444
  • 6
  • 17
-1
votes
1 answer

Is Argon2 better than salted hashing algorithm?

I already know that slow-hashing functions are good for storing passwords as it is very time consuming to crack them. And we know that Argon2 is a slow algorithm, and not only that, but Argon2 consumes a lot of memory as well. A webmaster would just…
Neha AK
  • 67
  • 1
  • 10
-1
votes
1 answer

Convert Bytestring to "normal" String Python

I'm generating a argon2d hash and wanted to compare it with hashstring from my database. For hashing I use this function: import argon2 argon2Hasher = argon2.hash_password_raw(b"password", b"TESTTESTTESTTEST" ,time_cost=16, memory_cost=512,…
Cal Blau
  • 117
  • 4
  • 14
1 2 3 4 5
6