Java org.springframework.security.crypto.bcrypt BCrypt fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.security.crypto.bcrypt BCrypt fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.security.crypto.bcrypt BCrypt.

The text is from its open source code.

Field

Method

booleancheckpw(String plaintext, String hashed)
Check that a plaintext password matches a previously hashed one
Stringgensalt()
Generate a salt for use with the BCrypt.hashpw() method, selecting a reasonable default for the number of hashing rounds to apply
Stringgensalt(int log_rounds)
Generate a salt for use with the BCrypt.hashpw() method
Stringgensalt(String prefix)
Stringgensalt(String prefix, int log_rounds)
Generate a salt for use with the BCrypt.hashpw() method
Stringgensalt(int log_rounds, SecureRandom random)
Generate a salt for use with the BCrypt.hashpw() method
Stringgensalt(String prefix, int log_rounds, SecureRandom random)
Generate a salt for use with the BCrypt.hashpw() method
Stringhashpw(String password, String salt)
Hash a password using the OpenBSD bcrypt scheme
Stringhashpw(byte passwordb[], String salt)
Hash a password using the OpenBSD bcrypt scheme