com.github.t3hnar.bcrypt.BCrypt.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scala-bcrypt_2.11 Show documentation
Show all versions of scala-bcrypt_2.11 Show documentation
Scala wrapper for jBcrypt + pom.xml inside
The newest version!
package com.github.t3hnar.bcrypt
import org.mindrot.jbcrypt.{BCrypt => B}
/**
* @author Yaroslav Klymko
*/
object BCrypt {
def gensalt(rounds: Int = 10): String = B.gensalt(rounds)
}