Implement machine fingerprint hashing (T-501)

This commit is contained in:
ila
2026-07-20 00:19:13 +08:00
parent 94ea334d1c
commit 8d81276fd9
16 changed files with 465 additions and 9 deletions
@@ -0,0 +1,8 @@
//go:build !windows
package windows
// MachineHash is unavailable outside a Windows target.
func MachineHash() (string, error) {
return "", ErrUnsupported
}