make static method

String make(
  1. String password
)

Implementation

static String make(String password) {
  return BCrypt.hashpw(password, BCrypt.gensalt());
}