PwHash.sensitivePwHashConfig

Password hashing config suitable for highly sensitive data.

  1. enum sensitivePwHashConfig;
  2. enum sensitivePwHashConfig;
    template PwHash(Algorithm alg)
    static if(!(alg == Algorithm.Scrypt))
    static if(alg == Algorithm.Argon2)
    enum sensitivePwHashConfig = PwHashConfig(crypto_pwhash_OPSLIMIT_SENSITIVE, crypto_pwhash_MEMLIMIT_SENSITIVE);

Meta