fix comment

This commit is contained in:
Hoang 2021-11-10 11:52:07 +07:00
parent 4f4ea8550e
commit d423c25256
2 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,7 @@ var (
prefix string
)
// Set ...
func Set(instance *mongo.Database, tablePrefix string) {
db = instance
prefix = tablePrefix

View File

@ -7,16 +7,19 @@ import (
"golang.org/x/crypto/bcrypt"
)
// HashPassword ...
func HashPassword(password string) string {
bytes, _ := bcrypt.GenerateFromPassword([]byte(password), passwordHashingCost)
return string(bytes)
}
// CheckPasswordHash ...
func CheckPasswordHash(password, hash string) bool {
err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
return err == nil
}
// GetSearchString ...
func GetSearchString(fieldList ...string) string {
var (
searchList = make([]interface{}, 0)