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.
15 lines
521 B
15 lines
521 B
package hackbrowserdata
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrBrowserNotExists = errors.New("browser not exists")
|
|
ErrBrowserNotSupport = errors.New("browser not support")
|
|
ErrWrongSecurityCommand = errors.New("wrong security command")
|
|
ErrNoPasswordInOutput = errors.New("no password in output")
|
|
ErrCouldNotFindInKeychain = errors.New("could not be find in keychain")
|
|
ErrBrowsingDataNotSupport = errors.New("browsing data not support")
|
|
ErrBrowsingDataNotExists = errors.New("browsing data not exists")
|
|
)
|
|
|