Skip to content
#

argon2

Here are 394 public repositories matching this topic...

schang933
schang933 commented Oct 10, 2016

First of all, appreciate the library. I think it's a great start and recommend filling some gaps in the README to aid understanding. As a feature request I'm not providing environment/reproducibility, but let me know if you need it.

  • Include a minimum-viable reasonably-secure implementation. Because most people, myself included, are not in the security space. Below is my attempt using old-ES from
brycx
brycx commented Feb 25, 2020

To check that all newtypes (SecretKeys, Poly1305, etc.) implement the correct traits, new testing functions are needed.

For example fn test_traits_secret_key<Secret: Debug + Drop + PartialEq>() {} could be used to check that a secret key implements the needed traits in a test like so:

fn test_traits_secret_key<Secret: Debug + Drop + PartialEq>() {}

#[test]
fn test_implemen
moritzploss
moritzploss commented Apr 11, 2020

First of all, thanks for this great tutorial! I learned a lot following along!

After going through the code several times, I'm wondering why we would need to explicitly encrypt/decrypt field values of our custom EncryptedField type before saving them in the database. Isn't that why we define our custom Ecto Types to begin with, so that we don't need to encrypt/decrypt values manually and expl

Improve this page

Add a description, image, and links to the argon2 topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the argon2 topic, visit your repo's landing page and select "manage topics."

Learn more