make static method

String make(
  1. String password
)

has the password using BCrypt technique

Hash.make('secret');

Implementation

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