You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
321 B
13 lines
321 B
1 year ago
|
package hackbrowserdata
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrBrowserNotExists = errors.New("browser not exists")
|
||
|
ErrWrongSecurityCommand = errors.New("wrong security command")
|
||
|
ErrNoPasswordInOutput = errors.New("no password in output")
|
||
|
ErrCouldNotFindInKeychain = errors.New("could not be find in keychain")
|
||
|
)
|