mirror of
https://github.com/moonD4rk/HackBrowserData.git
synced 2026-05-19 18:58:03 +02:00
Co-authored-by: Michael L <luoshitou9@gmail.com>
This commit is contained in:
@@ -2,6 +2,10 @@
|
||||
|
||||
package crypto
|
||||
|
||||
import "errors"
|
||||
|
||||
var ErrDarwinNotSupportDPAPI = errors.New("darwin not support dpapi")
|
||||
|
||||
func DecryptWithChromium(key, password []byte) ([]byte, error) {
|
||||
if len(password) <= 3 {
|
||||
return nil, ErrCiphertextLengthIsInvalid
|
||||
@@ -11,5 +15,5 @@ func DecryptWithChromium(key, password []byte) ([]byte, error) {
|
||||
}
|
||||
|
||||
func DecryptWithDPAPI(_ []byte) ([]byte, error) {
|
||||
return nil, nil
|
||||
return nil, ErrDarwinNotSupportDPAPI
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user