Changes for page Base64 encoding

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

From version 16.1
edited by Erik Bakker
on 2023/01/23 09:01
Change comment: There is no comment for this version
To version 14.1
edited by Erik Bakker
on 2022/08/28 15:20
Change comment: There is no comment for this version

Summary

Details

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