Skip to content

Releases: merge-simpson/letsdev-password-encoder-factory

Password Encoder Factory 0.1.0

09 Oct 08:13
Compare
Choose a tag to compare
Pre-release

Features

  • Create And Cache Password Encoder Instances.
    • support bcrypt
    • support argon2id
    • support argon2d
    • support properties and scan automatically
      # All properties are optional.
      letsdev:
        password:
          default-encoder: bcrypt
          bcrypt:
            strength: 10
          argon2:
            mode: argon2id
            salt-length: 16 # Unit: Bytes
            hash-length: 32 # Unit: Bytes
            parallelism: 1
            # memory-input: 생략 시 자동으로 계산됩니다. 메모리 비용 m ≥ 93750 ÷ ((3 × parallelism − 1) × α)
            iterations: 1
            alpha: 0.95
            memory-gain: 1.0
  • Expire Cached Password Encoders Automatically.