Initial commit

This commit is contained in:
2026-03-24 18:28:37 -04:00
commit e2b6081811
11 changed files with 720 additions and 0 deletions

6
fingerp/utils.py Normal file
View File

@ -0,0 +1,6 @@
import hashlib
import json
def hash_fingerprint(data: dict) -> str:
normalized = json.dumps(data, sort_keys=True)
return hashlib.sha256(normalized.encode()).hexdigest()