In the Data Masking profile, you configure the masking method you want to use, which UDR types and fields you want to mask/unmask, and any masking method-specific settings.
...
- Crypto, which is used for encrypting data with either AES-128 or AES-256. Can be used for both obscuring and unmasking data.
- Database, which is used for storing masked and unmasked data in a database enabling the data to be unmasked at a later stage.
- Hash, which is used for obscuring data only. You will not be able to unmask data using this method.
Data Masking Agent - Crypto tab, Read Key from Keystore selected
...
Creating a Data Masking Profile Using the Database Storage Method
To use the database storage method, you need to create a table to store the mappings between masked and unmasked data. It is important that there are unique indexes for both the masked and unmasked data since the masking method implementation depends on the database constraints to ensure consistency in the table data.
The example below shows what a definition with a single storage field in an Oracle database may be:
...
title | Example - A definition with a single storage field in an Oracle database |
---|
Code Block |
---|
CREATE TABLE masking_info (
unmasked NOT NULL,
masked NOT NULL,
CONSTRAINT masking_info_pk PRIMARY KEY (unmasked)
);
CREATE UNIQUE INDEX idx_masking_info_masked ON masking_info (masked); |
To create a Data Masking profile using Database Storage:
...
If applicable, make any changes to the Advanced settings. These parameters can be tuned to optimize performance
...
Creating a Data Masking Profile Using the Hash Method
To create a Data Masking profile using Hash:
...
This section includes:
Child pages (Children Display) |
---|