GenieFramework / GenieAuthentication.jl

Authentication plugin for Genie framework
MIT License
20 stars 11 forks source link

Hashing algo Argon2d #4

Closed mkschulze closed 1 year ago

mkschulze commented 3 years ago

Just posting here to rise attention to an interesting hashing algorythm. https://www.argon2d.com/ Supposed to be superior than SHA-256, I heard.

essenciary commented 3 years ago

Nice! Is the a Julia library for it?

mkschulze commented 3 years ago

No, I don't think so. But maybe it could be just generated by using the C code and then https://github.com/JuliaInterop/Clang.jl ?

mkschulze commented 3 years ago

I gave it a go and this is the early result, not sure how to go forward tho: https://github.com/mkschulze/argon2.jl

mkschulze commented 1 year ago

I'm not able to work this out sadly.