aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/slice/b64.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/slice/b64.h')
-rw-r--r--src/core/lib/slice/b64.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/lib/slice/b64.h b/src/core/lib/slice/b64.h
index 17e7306303..f86c1d9901 100644
--- a/src/core/lib/slice/b64.h
+++ b/src/core/lib/slice/b64.h
@@ -40,10 +40,11 @@ void grpc_base64_encode_core(char* result, const void* vdata, size_t data_size,
/* Decodes data according to the base64 specification. Returns an empty
slice in case of failure. */
-grpc_slice grpc_base64_decode(const char* b64, int url_safe);
+grpc_slice grpc_base64_decode(grpc_exec_ctx* exec_ctx, const char* b64,
+ int url_safe);
/* Same as above except that the length is provided by the caller. */
-grpc_slice grpc_base64_decode_with_len(const char* b64, size_t b64_len,
- int url_safe);
+grpc_slice grpc_base64_decode_with_len(grpc_exec_ctx* exec_ctx, const char* b64,
+ size_t b64_len, int url_safe);
#endif /* GRPC_CORE_LIB_SLICE_B64_H */