Skip to content

0.4.0

Compare
Choose a tag to compare
@tayloraswift tayloraswift released this 13 Nov 18:59
· 56 commits to master since this release
9ea135f

adds support for password-based key derivation (PBKDF2). this is a minor version bump because HMAC APIs have changed in a breaking manner.

instead of

let hmac:SHA256 = .hmac(message, key: key)

now do:

let hmac:SHA256 = .init(authenticating: message, key: key)

v0.4.0 also expands test coverage.