Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
9306bc07
Unverified
Commit
9306bc07
authored
Dec 02, 2017
by
Kenton Varda
Committed by
GitHub
Dec 02, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #577 from ecatmur/base64-invalid-read
Base64 decoder: invalid write/read
parents
215ef000
c10572fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
2 deletions
+16
-2
encoding-test.c++
c++/src/kj/encoding-test.c++
+12
-0
encoding.c++
c++/src/kj/encoding.c++
+4
-2
No files found.
c++/src/kj/encoding-test.c++
View file @
9306bc07
...
...
@@ -268,12 +268,24 @@ KJ_TEST("C escape encoding/decoding") {
}
KJ_TEST
(
"base64 encoding/decoding"
)
{
{
auto
encoded
=
encodeBase64
(
StringPtr
(
""
).
asBytes
(),
false
);
KJ_EXPECT
(
encoded
==
""
,
encoded
,
encoded
.
size
());
KJ_EXPECT
(
heapString
(
decodeBase64
(
encoded
.
asArray
()).
asChars
())
==
""
);
}
{
auto
encoded
=
encodeBase64
(
StringPtr
(
"foo"
).
asBytes
(),
false
);
KJ_EXPECT
(
encoded
==
"Zm9v"
,
encoded
,
encoded
.
size
());
KJ_EXPECT
(
heapString
(
decodeBase64
(
encoded
.
asArray
()).
asChars
())
==
"foo"
);
}
{
auto
encoded
=
encodeBase64
(
StringPtr
(
"quux"
).
asBytes
(),
false
);
KJ_EXPECT
(
encoded
==
"cXV1eA=="
,
encoded
,
encoded
.
size
());
KJ_EXPECT
(
heapString
(
decodeBase64
(
encoded
.
asArray
()).
asChars
())
==
"quux"
);
}
{
auto
encoded
=
encodeBase64
(
StringPtr
(
"corge"
).
asBytes
(),
false
);
KJ_EXPECT
(
encoded
==
"Y29yZ2U="
,
encoded
);
...
...
c++/src/kj/encoding.c++
View file @
9306bc07
...
...
@@ -687,7 +687,9 @@ int base64_decode_block(const char* code_in, const int length_in,
char
*
plainchar
=
plaintext_out
;
char
fragment
;
*
plainchar
=
state_in
->
plainchar
;
if
(
state_in
->
step
!=
step_a
)
{
*
plainchar
=
state_in
->
plainchar
;
}
switch
(
state_in
->
step
)
{
...
...
@@ -697,7 +699,7 @@ int base64_decode_block(const char* code_in, const int length_in,
do
{
if
(
codechar
==
code_in
+
length_in
)
{
state_in
->
step
=
step_a
;
state_in
->
plainchar
=
*
plainchar
;
state_in
->
plainchar
=
'\0'
;
return
plainchar
-
plaintext_out
;
}
fragment
=
(
char
)
base64_decode_value
(
*
codechar
++
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment