Friday, August 21, 2020

Using JavaScript to encrypt string into Base64

markdown # Introduce We need 2 files: app.html and app.js. You can find the source code at [Github page](https://github.com/orange2008/js-base64). # Effect graph When first access:
![](https://cdn.jsdelivr.net/gh/orange2008/IMGBED/assets/20200822085536.png)
When click 'Encryption':
![](https://cdn.jsdelivr.net/gh/orange2008/IMGBED/assets/20200822085601.png)
Type in your text, then click OK:
![](https://cdn.jsdelivr.net/gh/orange2008/IMGBED/assets/20200822090002.png)
When click 'Decryption':
![](https://cdn.jsdelivr.net/gh/orange2008/IMGBED/assets/20200822090047.png)
Type in your base64 code, then click OK:
![](https://cdn.jsdelivr.net/gh/orange2008/IMGBED/assets/20200822090131.png)

Digital Sign your EXE, DLL or CAB.

markdown When you download an executable file from a **trusted website**, you will find that it has been digitally signed. However, digital...