Changes for page Base64 decoding

Last modified by Danniar Firdausy on 2024/09/17 21:20

From version 13.1
edited by Erik Bakker
on 2023/01/05 11:47
Change comment: There is no comment for this version
To version 15.1
edited by Erik Bakker
on 2023/01/23 08:58
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -33,7 +33,7 @@
33 33  * The component in eMagiz needs a base64 encoded string as input
34 34  * Multiple times encoding and decoding in the same integration is **not** advisable
35 35  
36 -The Base64 decode algorithm converts plain text into original data. Technically, it can be said that it converts six-bit bytes into eight-bit bytes. So when you have the base64 string of QUJD, you could manually convert this to a readable format. You can find an excellent explanation of how it works [here](https://base64.guru/learn/base64-algorithm/decode). Luckily for us, eMagiz will do all the heavy lifting, and we do not have to take out pen and paper.
36 +The Base64 decode algorithm converts plain text into original data. Technically, it can be said that it converts six-bit bytes into eight-bit bytes. So when you have the base64 string of QUJD, you could manually convert this to a readable format. You can find an excellent explanation of how it works [[here>>https://base64.guru/learn/base64-algorithm/decode||target="blank"]]. Luckily for us, eMagiz will do all the heavy lifting, and we do not have to take out pen and paper.
37 37  
38 38  In the remainder of this microlearning, we will look at how you could implement this logic within the eMagiz tooling.
39 39  
... ... @@ -69,8 +69,8 @@
69 69  
70 70  If you are interested in this topic and want more information, please read the help text provided by eMagiz and the following links:
71 71  
72 -* https://base64.guru/learn/base64-algorithm/decode
73 -* https://www.base64decode.org/
72 +* [[Decode Algorithm>>https://base64.guru/learn/base64-algorithm/decode||target="blank"]]
73 +* [[Decode Online>>https://www.base64decode.org/||target="blank"]]
74 74  
75 75  == 7. Silent demonstration video ==
76 76