Encoding Blueprint Function Library. Available encodings: - Base32 - Base36 - Base58 - RFC3339
| Object |
| Blueprint Function Library |
| Module | Web3S_Encoding_Runtime |
| Header | Plugins/Web3S_Plugin/Source/Web3S_Encoding_Runtime/Public/Encoding/Lib/Web3S_EncodingFunctionLibrary.h |
| Source | Plugins/Web3S_Plugin/Source/Web3S_Encoding_Runtime/Private/Encoding/Lib/Web3S_EncodingFunctionLibrary.cpp |
| Include | Encoding/Lib/Web3S_EncodingFunctionLibrary.h |
| Date (UTC) to String (RFC3339) | Encodes a UTC date into an RFC 3339-compliant string. |
| DecodeBase32 | Decodes a Base32-encoded string into a hexadecimal string representation. |
| DecodeBase36 | Decodes a Base36 encoded string into binary data. |
| DecodeBase58 | Decodes a Base58 encoded string into a decoded string. |
| EncodeBase32 | Encodes a binary data into a Base32 string. |
| EncodeBase36 | Encodes binary data into a Base36 encoded string. |
| EncodeBase58 | Encodes binary data into a Base58 encoded string. |
| String (RFC3339) to Date (UTC) | Tries to convert a RFC3339 string into a date structure. The structure will be adjusted for the RFC3339 time offset. |