refactor(server): 设备特征码直接使用完整 SHA-256,移除 FP- 前缀和截断

This commit is contained in:
2026-03-06 11:23:52 +08:00
parent aabd60e619
commit 72d1727eb6

View File

@@ -6,5 +6,5 @@ export const computeDeviceFingerprint = async (): Promise<string> => {
const source = [uuid, serial, model, manufacturer].join('|')
const hash = sha256Hex(source)
return `FP-${hash.slice(0, 16)}`
return hash
}