fix: cookie and password decryption for macOS (#465) (#501)

Co-authored-by: Michael L <luoshitou9@gmail.com>
This commit is contained in:
Roger
2026-03-15 00:45:31 +08:00
committed by GitHub
parent 47ae49707c
commit 239501535a
2 changed files with 8 additions and 2 deletions
+5 -1
View File
@@ -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
}