
Password hashing and verification with bcrypt, offering salt generation, adjustable cost (work factor), and straightforward dependency integration for secure credential storage and authentication.
Multiplatform bcrypt library.
repositories {
mavenCentral()
}
dependencies {
// Replace TAG with the desired version
implementation("net.lsafer.bcrypt:bcrypt:TAG")
}Due to packaging problems. BCrypt in the browser requires adding this:
<script src="https://unpkg.com/bcryptjs@3.0.3/umd/index.js"
crossorigin="anonymous">Multiplatform bcrypt library.
repositories {
mavenCentral()
}
dependencies {
// Replace TAG with the desired version
implementation("net.lsafer.bcrypt:bcrypt:TAG")
}Due to packaging problems. BCrypt in the browser requires adding this:
<script src="https://unpkg.com/bcryptjs@3.0.3/umd/index.js"
crossorigin="anonymous">