Re: [PATCH v2 3/6] argon2: Import Argon2 from cryptsetup

2020-02-21 Thread Daniel Kiper
On Thu, Feb 20, 2020 at 07:00:51PM +0100, Patrick Steinhardt wrote: > In order to support the Argon2 key derival function for LUKS2, we > obviously need to implement Argon2. It doesn't make a lot of sense to > hand-code any crypto, which is why this commit instead imports Argon2 > from the cryptset

[PATCH v2 3/6] argon2: Import Argon2 from cryptsetup

2020-02-20 Thread Patrick Steinhardt
In order to support the Argon2 key derival function for LUKS2, we obviously need to implement Argon2. It doesn't make a lot of sense to hand-code any crypto, which is why this commit instead imports Argon2 from the cryptsetup project. This commit thus imports the code from the official reference im