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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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

Top Solution Authors
Top Kudoed Authors