This plug -in can be encrypted and decrypted by using b…
目录(Contents)
1. Node Description
String To Base64
![[Unreal Engine] DTBase64 Plugin Description [Unreal Engine] DTBase64 Plugin Description](https://dt.cq.cn/wp-content/uploads/2023/08/image-1.png)
For a string encryption, the string will automatically convert to the format of UTF8, so that it can be the same as the effect of the web -side encryption.
String :Need a string that needs to be encrypted.
Base 64 :Crypting Base64 string.
Base64 To String
![[Unreal Engine] DTBase64 Plugin Description [Unreal Engine] DTBase64 Plugin Description](https://dt.cq.cn/wp-content/uploads/2023/08/image-2.png)
Decrypt the Base64 string. Decrypt the actual string. The original dense string of Base64 must be in UTF8 format.
Base 64 :The string that needs to be decrypted.
String :Decodily string.
Binary To Base64
![[Unreal Engine] DTBase64 Plugin Description [Unreal Engine] DTBase64 Plugin Description](https://dt.cq.cn/wp-content/uploads/2023/08/image-3.png)
Base64 encrypted by byte array.
Binary :Needs that need to be encrypted.
Base64 :Crypting Base64 string.
Base64 To Binary
![[Unreal Engine] DTBase64 Plugin Description [Unreal Engine] DTBase64 Plugin Description](https://dt.cq.cn/wp-content/uploads/2023/08/image-5.png)
Decryage the Base64 string into byte array.
Base 64 :The string that needs to be decrypted.
Binary :Decolled byte array.
File To Base64
![[Unreal Engine] DTBase64 Plugin Description [Unreal Engine] DTBase64 Plugin Description](https://dt.cq.cn/wp-content/uploads/2023/08/image-6.png)
Encryption of the file is base64.
File Path :The complete path of the file. Such as E:\test.txt
Base 64 :Crypting Base64 string.
Base64 To File
![[Unreal Engine] DTBase64 Plugin Description [Unreal Engine] DTBase64 Plugin Description](https://dt.cq.cn/wp-content/uploads/2023/08/image-7.png)
Decolling the Base64 string and saving into a file.
Base 64 :The Base64 string that needs to be decrypted.
Save File Path :Save the complete path of the file. Such as E:\test.txt
Success :Decrypt and save successfully return True.