//go:build !windows package crypto // Unprotect always returns ErrDPAPIUnsupported on non-Windows platforms. // Importing legacy WinAuth XML that uses DPAPI encryption requires // Windows; the password-only ("y") leg still works cross-platform. func Unprotect(blob, entropy []byte, scope DPAPIScope) ([]byte, error) { return nil, ErrDPAPIUnsupported }