Questions tagged [data-masking]

Data masking is a method of protecting or hiding data with place-holder or random characters, such as the mask used on a password entry field.

196 questions
0
votes
1 answer

Simple Data Masking Algorithm

Is there a simple algorithm where by I can convert a numeric value to alphanumeric and reliably convert it back to the same number? For example, 12345 converts to 00A3DF and back to 12345.
jbagavathi
  • 297
  • 2
  • 6
  • 16
0
votes
1 answer

Informatica Persistent Data Masking

I am working on Informatica Persistent Data Masking tool and I have to mask repeatable values in different tables and schemas with same masking pattern. For example: if some name say sonal is repeating in different tables, I want to mask sonal in…
0
votes
1 answer

Is data masking available in IBM DataWorks Data Load API?

Can you implement data masking when using IBM DataWorks Data Load API to protect confidential information?
0
votes
1 answer

Data Masking Request/Response Content during proxy trace on Apigee Layer

A SB for a proxy on the Apigee service is returning a string, as opposed to an XML or JSON response. This string may include confidential data, which we would like to mask. Attempting to set up a DataMaskConfiguration like…
ddorr
  • 1
0
votes
1 answer

MYSQL masking data from update very slow on large DB

I have a DEV DB with 16 million(ish) records. I need to 'mask' columns of personal data (name, address, phone, etc.). I found a nice function that will do the data masking wonderfully Howto generate meaningful test data using a MySQL function. The…
GreetRufus
  • 421
  • 2
  • 9
  • 19
0
votes
2 answers

Update SQL Data using mask and rules

I have about 3000 entries in a column in SQL 2012 which are unstructured at the moment ie 1.1.01.10, 1.1.1.11 I want to get the data into a format which includes a leading 0 for all single numbers i.e. 01.01.01.10 and so on. is there any way of…
MJM
  • 13
  • 4
0
votes
2 answers

Data Masking in SQL Server 2008

I'm trying to mask all other ID's when a specific ID is selected. But it will not run. This is what I have so far. This is my current code: USE [DB1] Declare IDCursor Cursor For Select ID, Year, Amount, RefreshDate From Table1 …
0
votes
2 answers

jQuery Masked Input - Is it possible to retrieve the mask?

I'm using jQuery Masked Input Plugin with jQuery Validation Plugin. When a field of the form loses focus, the jQuery Validation Plugin shows a message but that's not happening to the fields that are bound to masks, perhaps because the blur event…
-1
votes
1 answer

classifying data masking correctly

Is data masking a synonym for anonymisation, or or is one of several methods to anonymise data? I read alot about it but now i got a bit confused. Maybe it's because people use it as a synonym, or it really is.
nercc
  • 1
  • 1
-1
votes
1 answer

C language, Hangman, random word and masking issues

I am making a Hangman game and I have encountered an issue. In this code the program selects a random word from a finite number of values, then it takes the random word and masks it so that in future coding it will allow the user to guess the…
Ocelotter
  • 1
  • 3
-1
votes
1 answer

Add Key data masking BigQuery

i am starting to use data masking on GCP. Searching the net I did not find anything. I wanted to know if someone had also used a KEY to strengthen crypting thank you Hello
-1
votes
1 answer

Need help to replicate a document layout and substitute the values in the replicated document

Azure Form recognizer does not provide capability of training less than 5 documents in a group. For this reason, I have to replicate the documents available in the group and change their values so I can create a set of 5 documents. The files are in…
-1
votes
1 answer

How to anonymize data in SQL?

I need to anonymize a variable in SQL data (VAR NAME = "ArId"). The variable contains 10 numbers + 1 letter + 2 numbers. I need to randomize the 10 first numbers and then keep the letter + the last two numbers. I have tried the rand() function, but…
Jakob Hinds
  • 1
  • 1
  • 2
-1
votes
2 answers

SQL Server : Update Table - Data Mask

I have created a data mask that finds a 16 digit number anywhere within a string and replaces all but the last four characters with X's. But instead of manually setting the string I need to update all data within a column located in a table. Please…
iggyweb
  • 2,373
  • 12
  • 47
  • 77
-4
votes
2 answers

How can I mask everything but the last four characters of a credit card number (PAN) with "#" symbols?

I have a credit card number like 1234567891234 and I want to show only the last 4 characters of this string, like #########1234. How can I do this?
1 2 3
13
14