We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dc6eb8a + d30b229 commit 186a791Copy full SHA for 186a791
login/base64.h
@@ -20,7 +20,7 @@
20
// Base64 needs 4 bytes for every 3 bytes of input (+ padding + NULL byte)
21
// NOTE: Caller is responsible for protecting against integer overflow.
22
#define ENCODED_BUFSIZE(n) ((((n) + 2) / 3) * 4 + 1)
23
-#define DECODED_BUFSIZE(n) ((((n)*3) / 4))
+#define DECODED_BUFSIZE(n) ((((n) * 3) / 4))
24
25
size_t base64url_encode(const uint8_t* src, size_t src_len, uint8_t* dst,
26
size_t dst_len);
0 commit comments