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.
25 lines
405 B
25 lines
405 B
package hackbrowserdata
|
|
|
|
type firefox struct {
|
|
name string
|
|
storage string
|
|
profilePath string
|
|
enableAllUser bool
|
|
masterKey []byte
|
|
}
|
|
|
|
func (f *firefox) Init() error {
|
|
return nil
|
|
}
|
|
|
|
func (f *firefox) setEnableAllUsers(e bool) {
|
|
f.enableAllUser = e
|
|
}
|
|
|
|
func (f *firefox) setProfilePath(p string) {
|
|
f.profilePath = p
|
|
}
|
|
|
|
func (f *firefox) setStorageName(s string) {
|
|
f.storage = s
|
|
}
|
|
|