Platforms to show: All Mac Windows Linux Cross-Platform
DecodeFromBase32MBS(data as string) as String New in 23.4
Function:
Decode a base 32 string.
Example:
Notes:
You may need to use DefineEncoding to specify what encoding the decoded text should have.
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.
