44 lines
986 B
Go
44 lines
986 B
Go
// Copyright (c) Mainflux
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package hasher
|
|
|
|
import (
|
|
"github.com/mainflux/mainflux/pkg/errors"
|
|
"github.com/mainflux/mainflux/users"
|
|
"golang.org/x/crypto/bcrypt"
|
|
)
|
|
|
|
const cost int = 10
|
|
|
|
var (
|
|
errHashPassword = errors.New("generate hash from password failed")
|
|
errComparePassword = errors.New("compare hash and password failed")
|
|
)
|
|
|
|
var _ users.Hasher = (*bcryptHasher)(nil)
|
|
|
|
type bcryptHasher struct{}
|
|
|
|
// New instantiates a bcrypt-based hasher implementation.
|
|
func New() users.Hasher {
|
|
return &bcryptHasher{}
|
|
}
|
|
|
|
func (bh *bcryptHasher) Hash(pwd string) (string, error) {
|
|
hash, err := bcrypt.GenerateFromPassword([]byte(pwd), cost)
|
|
if err != nil {
|
|
return "", errors.Wrap(errHashPassword, err)
|
|
}
|
|
|
|
return string(hash), nil
|
|
}
|
|
|
|
func (bh *bcryptHasher) Compare(plain, hashed string) error {
|
|
if err := bcrypt.CompareHashAndPassword([]byte(hashed), []byte(plain)); err != nil {
|
|
return errors.Wrap(errComparePassword, err)
|
|
}
|
|
|
|
return nil
|
|
}
|