Platforms to show: All Mac Windows Linux Cross-Platform
EncodeToBase32MBS(data as string) as String New in 23.4
Function:
Encode a base32 string.
Example:
Notes:
Please check what text encoding you want to use. Especially what the software processing the base32 string expects.
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
global method | Encryption and Hash | MBS Util Plugin | 23.4 | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | All |
Example:
Dim s As String = EncodeToBase32MBS("The quick brown fox jumps over the lazy dog.")
If s = "KRUGKIDROVUWG2ZAMJZG653OEBTG66BANJ2W24DTEBXXMZLSEB2GQZJANRQXU6JAMRXWOLQ=" Then
// okay
Dim d As String = DecodeFromBase32MBS(s)
MessageBox d
Else
Break
End If
Blog Entries
The items on this page are in the following plugins: MBS Util Plugin.
