Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Sarazin73
Frequent Visitor

Decrypt string values from a column of a table in a query

Hello,
i search to decrypt string values from a crypted column on a table imported as a query in my Power BI report.
The string is crypted in input with a XOR algorythm as follow :

String ToCrypt="";

for (int i=0; i< "sample_string".length();i++) {
           ToCrypt = ToCrypt + (char)("sample_string".charAt(i)^24); //(XOR 24)
}

How can i do in Power Query to decrypt in a new column the content of this crypted column for each row of my query ? (dataset). Thank you for yours ideas and comments

1 ACCEPTED SOLUTION

Hi @Sarazin73,

I've written a custom function for you:

fnXorCrypt = (
    string as text, 
    xorValue as number
) as text =>
    // concat encrypted characters
    List.Accumulate(
        // get a list of chars
        Text.ToList(string),
        // initial string
        "",
        // accumulate last state and a new encrypted character
        (state, current) =>
            state 
            & 
            Character.FromNumber(
                Number.BitwiseXor(
                    Character.ToNumber(current), 
                    xorValue
                )
            )
    )

The usage:

EncodedString = fnXorCrypt("Lundi", 42)

A test:

Capture.PNG

 

View solution in original post

4 REPLIES 4
Nolock
Resident Rockstar
Resident Rockstar

Hi @Sarazin73,

do you also have the decryption algorithm in c-like code? If I had one, I'd develop a function in M for you.

And can you please post some examples for testing?

Thank you 🙂

 

Hi,

 

Thanks for helphing me !
The algorythm used is the same to decryt than to encrypt. The initial outside script that crypt data as source is in java language. We have finally do tests with XOR 42 instead of XOR 24. Below, some samples with their corresponding encoding string.

Lundi : f_DNC

Mardi : gKXNC

Mercredi : gOXIXONC

Jeudi : `O_NC

Vendredi : |ODNXONC

Samedi : yKGONC

Dimanche : nCGKDIBO

Hi @Sarazin73,

I've written a custom function for you:

fnXorCrypt = (
    string as text, 
    xorValue as number
) as text =>
    // concat encrypted characters
    List.Accumulate(
        // get a list of chars
        Text.ToList(string),
        // initial string
        "",
        // accumulate last state and a new encrypted character
        (state, current) =>
            state 
            & 
            Character.FromNumber(
                Number.BitwiseXor(
                    Character.ToNumber(current), 
                    xorValue
                )
            )
    )

The usage:

EncodedString = fnXorCrypt("Lundi", 42)

A test:

Capture.PNG

 

Hi NoLock,

thanks for your job. It's perfect !

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors