feat(exposed): expose exposed-crypt password hashing - #29
Merged
Conversation
- Add exposed-crypt 1.5.0 to the exposedEcosystem bundle (api-exposed) - Add integration tests proving hashed() columns store salted hashes, never plaintext (BCrypt, Argon2, Pbkdf2, SCrypt) - Add BouncyCastle as test-only dependency (required by Argon2/SCrypt hashers; consumers add it themselves, matching Exposed's optional-dependency design) - Bump framework version to 0.0.12-SNAPSHOT
Argon2 and SCrypt hashers require BouncyCastle at runtime; shipping it via the api bundle makes the whole hasher matrix work out of the box for consumers instead of failing at runtime.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
exposed-crypt1.5.0 to theexposedEcosystembundle (api-exposed):hashed()columns,Hasher/Hashed, BCrypt/Argon2/Pbkdf2/SCrypt hashers (OWASP-recommended)