You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Administrators should have the ability to mark specific columns as sensitive. This allows users to query data from these columns, but the output will be masked to protect sensitive information.
This feature is designed for handling personal data.
When columns are marked as sensitive, users may still have permission to query these columns, but the output data will be masked. By default:
Text and strings: Use the MaskingFirstLastSymbol algorithm.
Numbers: Use the MaskingConstantlyHidden algorithm.
Other types: Use the MaskingConstantlyHidden algorithm.
Additionally, administrators should be able to specify masking algorithms for each sensitive field in the table. The configuration must allow users to select specific masking algorithms and define options for those algorithms.
Available Masking Algorithms
MaskingFirstLastSymbol: Displays the first and last characters of a string with three stars (***) in between.
Example: "John Doe" becomes "J***e".
MaskingConstantlyHidden: Replaces all data with a constant string: ???.
MaskingNumberRange: Displays numbers in predefined ranges, such as <100, 100-200, >200, or custom ranges specified by the administrator.
Example: 123 becomes 100-200.
The configuration should support assigning a specific masking algorithm to each field, along with options for customizing the behavior of the chosen algorithm. This ensures flexibility while protecting sensitive data appropriately.
The text was updated successfully, but these errors were encountered:
Administrators should have the ability to mark specific columns as sensitive. This allows users to query data from these columns, but the output will be masked to protect sensitive information.
This feature is designed for handling personal data.
When columns are marked as sensitive, users may still have permission to query these columns, but the output data will be masked. By default:
MaskingFirstLastSymbol
algorithm.MaskingConstantlyHidden
algorithm.MaskingConstantlyHidden
algorithm.Additionally, administrators should be able to specify masking algorithms for each sensitive field in the table. The configuration must allow users to select specific masking algorithms and define options for those algorithms.
Available Masking Algorithms
MaskingFirstLastSymbol
: Displays the first and last characters of a string with three stars (***
) in between."John Doe"
becomes"J***e"
.MaskingConstantlyHidden
: Replaces all data with a constant string:???
.12345
,"[email protected]"
) becomes???
.MaskingNumberRange
: Displays numbers in predefined ranges, such as<100
,100-200
,>200
, or custom ranges specified by the administrator.123
becomes100-200
.The configuration should support assigning a specific masking algorithm to each field, along with options for customizing the behavior of the chosen algorithm. This ensures flexibility while protecting sensitive data appropriately.
The text was updated successfully, but these errors were encountered: