Decode a URL-safe base64 string into an output buffer at runtime.
Declared in <folly/base64.h>
base64_decode_result
base64URLDecodeRuntime(
std::string_view s,
char* o) noexcept;
The decode result with success flag and output end pointer.
| Name | Description |
|---|---|
| s | The base64URL-encoded input. |
| o | Pointer to the output buffer. |