Jump to content

Recommended Posts

Posted (edited)

I need to anonymize some strings.

For example:
 

_Example()
Func _Example()
    Local $sString1 = 'Warsaw'
    MsgBox(0, 'Test 1a', _GDPR_Anonymize_String1($sString1))
    MsgBox(0, 'Test 1b', _GDPR_Anonymize_String2($sString1))

    Local $sString2 = 'Zielona Góra'
    MsgBox(0, 'Test 2a', _GDPR_Anonymize_String1($sString2))
    MsgBox(0, 'Test 2b', _GDPR_Anonymize_String2($sString2))

    Local $sString3 = 'ZAKŁAD UBEZPIECZEŃ SPOŁECZNYCH'
    MsgBox(0, 'Test 3a', _GDPR_Anonymize_String1($sString3))
    MsgBox(0, 'Test 3b', _GDPR_Anonymize_String2($sString3))

    Local $sString4 = 'ZAKŁAD UBEZPIECZEŃ SPOŁECZNYC'
    MsgBox(0, 'Test 4a', _GDPR_Anonymize_String1($sString4))
    MsgBox(0, 'Test 4b', _GDPR_Anonymize_String2($sString4))
EndFunc   ;==>_Example


Func _GDPR_Anonymize_String1(ByRef $sString)
    Return SetError(@error, @extended, StringRegExpReplace($sString, '(?i)(.)(.{1,2})', '$1**'))
EndFunc   ;==>_GDPR_Anonymize_String1

Func _GDPR_Anonymize_String2(ByRef $sString)
    Return SetError(@error, @extended, StringRegExpReplace($sString, '(?i)(.)(..)', '$1**'))
EndFunc   ;==>_GDPR_Anonymize_String2

 

What is your opinion about this example, and compliance with GDPR  "guidelines"?
Maybe you have a better solution to this problem?

Edited by mLipok

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

@mLipok

Go for the data pseudonymisation.

It can be applied to large amount of data, and it is more reliable than the anonymisation, since, in the first case, data is protected/crypted, while in the second case, data is "changed", and the work to rebuild it is significantly bigger than using the first method :)

Click here to see my signature:

  Reveal hidden contents

 

Posted

Hello. Write it in that way you will not affect @error and @extented. 

Saludos

Posted
  On 2/28/2019 at 7:23 PM, abberration said:

Never heard of GDPR

Expand  
 

Are you from USA?

  On 2/28/2019 at 7:33 PM, FrancescoDiMuro said:

Go for the data pseudonymisation......and the work to rebuild it is significantly bigger than using the first method

Expand  
1

My intention was to create a function which can put some restricted data in a "save form" to TXT log Files or other "output".

#include "ErrorLog.au3" ; https://www.autoitscript.com/forum/index.php?showtopic=195882
_Log_SetOutputFunction(ConsoleWrite)

_Example()

Func _Example()
    Local $sString2 = 'Zielona Góra'
    _Log('City: ' & _GDPR_Anonymize_String1($sString2) & @CRLF)
EndFunc   ;==>_Example



Func _GDPR_Anonymize_String1(ByRef $sString, $iError = @error, $iExtended = @extended)
    Return SetError($iError, $iExtended, StringRegExpReplace($sString, '(?i)(.)(.{1,2})', '$1**'))
EndFunc   ;==>_GDPR_Anonymize_String1

Func _GDPR_Anonymize_String2(ByRef $sString, $iError = @error, $iExtended = @extended)
    Return SetError($iError, $iExtended, StringRegExpReplace($sString, '(?i)(.)(..)', '$1**'))
EndFunc   ;==>_GDPR_Anonymize_String2

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

It still does not affect @error and @extended.

 

Saludos

Posted
  On 3/1/2019 at 12:41 PM, mLipok said:

My intention was to create a function which can put some restricted data in a "save form" to TXT log Files or other "output".

Expand  

So you don't have the need to "rebuild" the data in a later moment?
If so, then you can use the anonymisation (partial or total) :)

Click here to see my signature:

  Reveal hidden contents

 

Posted
  On 2/28/2019 at 8:02 PM, Danyfirex said:

Write it in that way you will not affect @error and @extented. 

Expand  
 

I do what you request (this was quite sensible)......

and

  On 3/1/2019 at 12:49 PM, Danyfirex said:

It still does not affect @error and @extended.

Expand  
 

now you are asking about the opposite case?

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 3/1/2019 at 1:58 PM, FrancescoDiMuro said:

So you don't have the need to "rebuild" the data in a later moment?
If so, then you can use the anonymisation (partial or total) :)

Expand  
1

As EndUser (Client) still have the source database so this is rather a pseudonymization (from the point of view of EndUser), but if the EndUser wants to send only log data to DevTeam, then EndUser can say that Logged data was sent do DevTeam as an anonymized data.

At least ..... I HOPE THAT ⁉️

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

I mean this:

_Example()
Func _Example()
    Local $sString1 = 'Warsaw'
    Local $sStringNew=_GDPR_Anonymize_String1($sString1)
    ConsoleWrite("@extended: " & @extended & @CRLF)
    ConsoleWrite("$sStringNew: " & $sStringNew & @CRLF)
EndFunc   ;==>_Example

 

@extended should be 2 in this case.

 

Saludos

Posted
  On 3/1/2019 at 2:04 PM, FrancescoDiMuro said:

to what SRER returns

Expand  

What means SRER ?

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 3/1/2019 at 2:09 PM, mLipok said:

As EndUser (Client) still have the source database so this is rather a pseudonymization

Expand  

It depends on how data is stored in the Database.
The EndUser should be able to rebuild the data from a database in which data should be pseudonymised.
But, in this case, the EndUser has the Database with "decrypted" data, so, to send it to the DevTeam, you can just anonymise it and nothing else.

  On 3/1/2019 at 2:10 PM, mLipok said:

What means SRER ?

Expand  

StringRegExpReplace :)

Click here to see my signature:

  Reveal hidden contents

 

Posted
  On 3/1/2019 at 2:10 PM, Danyfirex said:

@extended should be 2 in this case.

Expand  
 

Do you mean that I should return @extended from StringRegExpReplace() function (number of replacements performed) ?

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted

Not really. I just thought You wanted that. But actually i that way you never affect @error or @extended what I want to say is that this expression:

Return SetError(@error, @extended, StringRegExpReplace($sString, '(?i)(.)(.{1,2})', '$1**'))

this part "StringRegExpReplace($sString, '(?i)(.)(.{1,2})', '$1**')" or wharever expression you run in that way will not affect @error, @extended.

Saludos

Posted

@Danyfirex aha .. now I see. You were referring to my "nonsense" in the code:

Func _GDPR_Anonymize_String1(ByRef $sString)
    Return SetError(@error, @extended, StringRegExpReplace($sString, '(?i)(.)(.{1,2})', '$1**'))
EndFunc   ;==>_GDPR_Anonymize_String1

where, the code will always return      @error = 0   and    @exteneded = 0 

Yes, this was a quick beta version ;)

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted
  On 3/1/2019 at 2:15 PM, FrancescoDiMuro said:

But, in this case, the EndUser has the Database with "decrypted" data, so, to send it to the DevTeam, you can just anonymise it and nothing else.

Expand  
2

So if program stores some anonymized data in a form of "Textual LOG files" ...

Question 1:
Can my function be considered sufficient to assume that the returned data is fully anonymous?

Question 2:
In the case when the answer to Q1 == Yes .... 

Whether such file is not subject to additional protection (for example I mean that you do not need to backup, etc.)  ?
or in other words:
Whether for this type of file, constituting a set of anonymous information, you still need to use any other procedures required by GPDR ?

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Posted (edited)
  On 3/1/2019 at 2:59 PM, mLipok said:

Can my function be considered sufficient to assume that the returned data is fully anonymous?

Expand  

This article is pretty in-line with the object you are trying to achieve.
By the way, it depends about what kind of data you have; if you have a database where, querying it you can somehow rebuild the data, you should make a lot of data suppression instead of data generalization (so, make some columns * instead of W*****w).
Take a look at the article and let us know :)

EDIT: 
About Question 2, you have always to do backups of your data.

Through some suggested software, there's Iperius Backup.

Edited by FrancescoDiMuro

Click here to see my signature:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...