Skip to content

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

Password Encoder API 0.1.1

11 Oct 11:02
Compare
Choose a tag to compare
Pre-release

Patches

  • Fix issue with “letsdev.password.default-encoder” property not binding.
  • Apply an exception and error codes for argon2 encoder options.

Full Changelog: 0.1.0...0.1.1

Password Encoder API 0.1.0

09 Oct 07:35
Compare
Choose a tag to compare
Pre-release

Features

  • Password Encoder Ports (Independent of Spring Crypto)
  • Exceptions
  • Options
  • Auto Configuration
    • Scan Properties
      # 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