vschwaberow / rustgenhash

CLI tool written in Rust which can be used to generate hashes
Other
13 stars 3 forks source link

How can i select argon2 parameters? #99

Open Else00 opened 1 month ago

Else00 commented 1 month ago

How can i select argon2 parameters like type (i, d, id), parallelization, salt, memory, iterations

vschwaberow commented 1 month ago

Not implemented yet.

Else00 commented 1 month ago

I think that is absolutely a required function because if you can't decide the parameters the argon2 option is useless.

vschwaberow commented 1 month ago

Default parameters make Argon2 immediately useful for most cases, negating the need for custom configuration while still providing robust security. The implementation follows the best practices here, so I have to correct you here it is not useless.

However, I have that on my Todo for quite some time. The reason I haven't implemented it yet is due to the matter that the entire RHash and PHash structure needs to be refactored to achieve that in a fitting way also for other schemes.