Anonymisation of User Identifier
TOTVS Data supports anonymisation of the following identifiers:
- CPF
- Phone
- International Phone
1 - CPF
To anonymize a CPF field, should only be used 11 numerical digits, without formatting (punctuation and strokes).
Example:
| CPF | SHA256(CPF) | Identifier |
|---|---|---|
| 111.111.111-11 | SHA256(11111111111) | 534a4a8eafcd8489af32356d5a7a25f88c70cfe0448539a7c42964c1b897a359 |
| 123.456.789-00 | SHA256(12345678900) | a8476735b37a541a38402a2e7037c79e2d217fe9780e5e34347156ef61eff42b |
2 - E-Mail
To anonymize a E-Mail field, should use all lowercase characters (lower case).
Example:
| SHA256(EMAIL) | Identificador | |
|---|---|---|
| EMAIL@dominio.com | SHA256(email@dominio.com) | 74f37874696d1769420e33c6a4e26a084237e80edd06426444eed2d9f94f1690 |
| em2@EXAMPLE.COM | SHA256(em2@example.com) | bac5ab15917c687e071cef38b5c3000bf77c4a151f2ccc922616104424eaa690 |
3 - Phone
To anonymize a phone field, should use only the numbers of its full international form. Note that should be no international carrier codes in the phone's shape.
- 11982235000 → 5511982235000
- 8587719999 → 558587719999
| SHA256(TELEFONE) | Identificador | |
|---|---|---|
| 5511982235000 | SHA256(5511982235000) | 8b9cc9fdd60ff8b02af6bda77f3f3a5feaa0614b7e180de726b9e9fe0728d421 |
| 558587719999 | SHA256(558587719999) | 0f90b054414e0d8dd746ba35c5e3d6b6a236da8ceeb5ff9a24a3e94f775bef06 |
4 - International Phone
To anonymize a phone field, should use only the numbers of its full international form. Note that should be no international carrier codes in the phone's shape.
- 11982235000 → +5511982235000
- 8587719999 → +558587719999
| SHA256(TELEFONE) | Identificador | |
|---|---|---|
| +5511982235000 | SHA256(5511982235000) | b845382351d82f34f927eefbb6d5be7899de668d31c692c923de1838e2ccc590 |
| +558587719999 | SHA256(558587719999) | 56dfdac1f0bbf80bc5022202e4c9d92aaa141313f91a2b81bd91065e2adbb9b3 |