CCSP · Question #109
Which of the following involves assigning an opaque value to sensitive data fields to protect confidentiality?
The correct answer is C. Tokenization. Tokenization replaces sensitive data with a unique, non-sensitive substitute value (a token) that retains all essential information without compromising the original data.
Question
Which of the following involves assigning an opaque value to sensitive data fields to protect confidentiality?
Options
- AObfuscation
- BMasking
- CTokenization
- DAnonymization
How the community answered
(38 responses)- A5% (2)
- B3% (1)
- C89% (34)
- D3% (1)
Why each option
Tokenization replaces sensitive data with a unique, non-sensitive substitute value (a token) that retains all essential information without compromising the original data.
Obfuscation involves making data difficult to understand or interpret, often by confusing its form, but it does not necessarily replace the data with an opaque, unrelated value like tokenization does.
Masking replaces sensitive data with realistic, but non-sensitive, data (e.g., replacing actual credit card numbers with 'XXXX-XXXX-XXXX-1234') often for use in non-production environments, rather than with an opaque, unrelated token.
Tokenization is the process of replacing sensitive data with a unique, randomly generated, non-sensitive substitute value, called a token, that has no intrinsic meaning or value. The original sensitive data is stored securely in a separate data store (token vault), while the token can be used in its place to protect confidentiality without exposing the actual sensitive information.
Anonymization involves removing or modifying personally identifiable information (PII) to prevent re-identification, often by aggregating data or removing direct identifiers, rather than replacing specific sensitive fields with tokens.
Concept tested: Data sanitization techniques (Tokenization)
Source: https://learn.microsoft.com/en-us/azure/data-explorer/kusto/query/replace-sensitive-data-with-tokens
Topics
Community Discussion
No community discussion yet for this question.