Skip to contents

Function to verify hashed password.

Usage

verify_password(db, input_username, input_password)

Arguments

db

Database connection object

input_username

User inputted user name.

input_password

User inputted password.

Value

Logical value of TRUE or FALSE depending on whether the password is verified.

Examples

if (FALSE) {
verify_password(db, input$username, input$password)
}