Verify PIN using the one in the db
This commit is contained in:
parent
2b511aba4c
commit
b6e4ba7ede
@ -262,12 +262,11 @@ func (h *Handlers) VerifyPin(ctx context.Context, sym string, input []byte) (res
|
|||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
|
||||||
accountData, err := h.accountFileHandler.ReadAccountData()
|
AccountPin, err := h.db.Fetch([]byte(AccountPin))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return res, err
|
return res, err
|
||||||
}
|
}
|
||||||
|
if bytes.Equal(input, AccountPin) {
|
||||||
if bytes.Equal(input, []byte(accountData["AccountPIN"])) {
|
|
||||||
res.FlagSet = []uint32{flags["flag_valid_pin"]}
|
res.FlagSet = []uint32{flags["flag_valid_pin"]}
|
||||||
res.FlagReset = []uint32{flags["flag_pin_mismatch"]}
|
res.FlagReset = []uint32{flags["flag_pin_mismatch"]}
|
||||||
res.FlagSet = append(res.FlagSet, flags["flag_pin_set"])
|
res.FlagSet = append(res.FlagSet, flags["flag_pin_set"])
|
||||||
|
Loading…
Reference in New Issue
Block a user