mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 02:35:49 +08:00

* Add loading and countdown status to the verification code sending button * Add bcrypt encrypted password type * Revert "Add loading and countdown status to the verification code sending button" This reverts commit 782b9e229acf2cced9848f137f1b714b0be1df63. * Update bcrypt.go * Update go.sum
24 lines
655 B
Go
24 lines
655 B
Go
package cred
|
|
|
|
import "golang.org/x/crypto/bcrypt"
|
|
|
|
type BcryptCredManager struct{}
|
|
|
|
func NewBcryptCredManager() *BcryptCredManager {
|
|
cm := &BcryptCredManager{}
|
|
return cm
|
|
}
|
|
|
|
func (cm *BcryptCredManager) GetHashedPassword(password string, userSalt string, organizationSalt string) string {
|
|
bytes, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
if err != nil {
|
|
return ""
|
|
}
|
|
return string(bytes)
|
|
}
|
|
|
|
func (cm *BcryptCredManager) IsPasswordCorrect(plainPwd string, hashedPwd string, userSalt string, organizationSalt string) bool {
|
|
err := bcrypt.CompareHashAndPassword([]byte(hashedPwd), []byte(plainPwd))
|
|
return err == nil
|
|
}
|