aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Evans <kevans@FreeBSD.org>2023-02-08 06:39:25 +0000
committerKyle Evans <kevans@FreeBSD.org>2023-02-08 06:39:25 +0000
commitd4ecf62f120183d07437d40e2cc64ef6a15787f5 (patch)
treeb881e8188f96b211d175ae4b6d7bc7e00752c4bd
parent4e86369417850050b0ca52f07fa559f02e9f2caa (diff)
downloadsrc-d4ecf62f120183d07437d40e2cc64ef6a15787f5.tar.gz
src-d4ecf62f120183d07437d40e2cc64ef6a15787f5.zip
libc: base64: trim some bogus trailing whitespace
No functional change, just a style fix. Sponsored by: Klara, Inc.
-rw-r--r--lib/libc/net/base64.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/net/base64.c b/lib/libc/net/base64.c
index 998c3c213834..fe70f2c71f08 100644
--- a/lib/libc/net/base64.c
+++ b/lib/libc/net/base64.c
@@ -110,9 +110,9 @@ static const char Pad64 = '=';
end of the data is performed using the '=' character.
Since all base64 input is an integral number of octets, only the
- -------------------------------------------------
+ -------------------------------------------------
following cases can arise:
-
+
(1) the final quantum of encoding input is an integral
multiple of 24 bits; here, the final unit of encoded
output will be an integral multiple of 4 characters
@@ -154,14 +154,14 @@ b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) {
target[datalength++] = Base64[output[2]];
target[datalength++] = Base64[output[3]];
}
-
+
/* Now we worry about padding. */
if (0 != srclength) {
/* Get what's left. */
input[0] = input[1] = input[2] = '\0';
for (i = 0; i < srclength; i++)
input[i] = *src++;
-
+
output[0] = input[0] >> 2;
output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);