Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
e003f83a
Commit
e003f83a
authored
Jul 31, 2014
by
Edward Thomson
Committed by
Edward Thomson
Aug 15, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Introduce git_buf_decode_base64
Decode base64-encoded text into a git_buf
parent
40867266
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
92 additions
and
23 deletions
+92
-23
src/buffer.c
+56
-10
src/buffer.h
+4
-2
src/diff_print.c
+1
-1
src/transports/http.c
+1
-1
src/transports/winhttp.c
+1
-1
tests/core/buffer.c
+29
-8
No files found.
src/buffer.c
View file @
e003f83a
...
...
@@ -189,10 +189,10 @@ int git_buf_puts(git_buf *buf, const char *string)
return
git_buf_put
(
buf
,
string
,
strlen
(
string
));
}
static
const
char
b
64str
[]
=
static
const
char
b
ase64_encode
[]
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
;
int
git_buf_
put
_base64
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
)
int
git_buf_
encode
_base64
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
)
{
size_t
extra
=
len
%
3
;
uint8_t
*
write
,
a
,
b
,
c
;
...
...
@@ -207,19 +207,19 @@ int git_buf_put_base64(git_buf *buf, const char *data, size_t len)
b
=
*
read
++
;
c
=
*
read
++
;
*
write
++
=
b
64str
[
a
>>
2
];
*
write
++
=
b
64str
[(
a
&
0x03
)
<<
4
|
b
>>
4
];
*
write
++
=
b
64str
[(
b
&
0x0f
)
<<
2
|
c
>>
6
];
*
write
++
=
b
64str
[
c
&
0x3f
];
*
write
++
=
b
ase64_encode
[
a
>>
2
];
*
write
++
=
b
ase64_encode
[(
a
&
0x03
)
<<
4
|
b
>>
4
];
*
write
++
=
b
ase64_encode
[(
b
&
0x0f
)
<<
2
|
c
>>
6
];
*
write
++
=
b
ase64_encode
[
c
&
0x3f
];
}
if
(
extra
>
0
)
{
a
=
*
read
++
;
b
=
(
extra
>
1
)
?
*
read
++
:
0
;
*
write
++
=
b
64str
[
a
>>
2
];
*
write
++
=
b
64str
[(
a
&
0x03
)
<<
4
|
b
>>
4
];
*
write
++
=
(
extra
>
1
)
?
b
64str
[(
b
&
0x0f
)
<<
2
]
:
'='
;
*
write
++
=
b
ase64_encode
[
a
>>
2
];
*
write
++
=
b
ase64_encode
[(
a
&
0x03
)
<<
4
|
b
>>
4
];
*
write
++
=
(
extra
>
1
)
?
b
ase64_encode
[(
b
&
0x0f
)
<<
2
]
:
'='
;
*
write
++
=
'='
;
}
...
...
@@ -229,10 +229,56 @@ int git_buf_put_base64(git_buf *buf, const char *data, size_t len)
return
0
;
}
/* The inverse of base64_encode, offset by '+' == 43. */
static
const
int8_t
base64_decode
[]
=
{
62
,
-
1
,
-
1
,
-
1
,
63
,
52
,
53
,
54
,
55
,
56
,
57
,
58
,
59
,
60
,
61
,
-
1
,
-
1
,
-
1
,
0
,
-
1
,
-
1
,
-
1
,
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
,
21
,
22
,
23
,
24
,
25
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
-
1
,
26
,
27
,
28
,
29
,
30
,
31
,
32
,
33
,
34
,
35
,
36
,
37
,
38
,
39
,
40
,
41
,
42
,
43
,
44
,
45
,
46
,
47
,
48
,
49
,
50
,
51
};
#define BASE64_DECODE_VALUE(c) (((c) < 43 || (c) > 122) ? -1 : base64_decode[c - 43])
int
git_buf_decode_base64
(
git_buf
*
buf
,
const
char
*
base64
,
size_t
len
)
{
size_t
i
;
int8_t
a
,
b
,
c
,
d
;
size_t
orig_size
=
buf
->
size
;
assert
(
len
%
4
==
0
);
ENSURE_SIZE
(
buf
,
buf
->
size
+
(
len
/
4
*
3
)
+
1
);
for
(
i
=
0
;
i
<
len
;
i
+=
4
)
{
if
((
a
=
BASE64_DECODE_VALUE
(
base64
[
i
]))
<
0
||
(
b
=
BASE64_DECODE_VALUE
(
base64
[
i
+
1
]))
<
0
||
(
c
=
BASE64_DECODE_VALUE
(
base64
[
i
+
2
]))
<
0
||
(
d
=
BASE64_DECODE_VALUE
(
base64
[
i
+
3
]))
<
0
)
{
buf
->
size
=
orig_size
;
buf
->
ptr
[
buf
->
size
]
=
'\0'
;
giterr_set
(
GITERR_INVALID
,
"Invalid base64 input"
);
return
-
1
;
}
buf
->
ptr
[
buf
->
size
++
]
=
((
a
<<
2
)
|
(
b
&
0x30
)
>>
4
);
buf
->
ptr
[
buf
->
size
++
]
=
((
b
&
0x0f
)
<<
4
)
|
((
c
&
0x3c
)
>>
2
);
buf
->
ptr
[
buf
->
size
++
]
=
(
c
&
0x03
)
<<
6
|
(
d
&
0x3f
);
}
buf
->
ptr
[
buf
->
size
]
=
'\0'
;
return
0
;
}
static
const
char
b85str
[]
=
"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~"
;
int
git_buf_
put
_base85
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
)
int
git_buf_
encode
_base85
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
)
{
ENSURE_SIZE
(
buf
,
buf
->
size
+
(
5
*
((
len
/
4
)
+
!!
(
len
%
4
)))
+
1
);
...
...
src/buffer.h
View file @
e003f83a
...
...
@@ -156,10 +156,12 @@ void git_buf_rtrim(git_buf *buf);
int
git_buf_cmp
(
const
git_buf
*
a
,
const
git_buf
*
b
);
/* Write data as base64 encoded in buffer */
int
git_buf_put_base64
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
);
int
git_buf_encode_base64
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
);
/* Decode the given bas64 and write the result to the buffer */
int
git_buf_decode_base64
(
git_buf
*
buf
,
const
char
*
base64
,
size_t
len
);
/* Write data as "base85" encoded in buffer */
int
git_buf_
put
_base85
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
);
int
git_buf_
encode
_base85
(
git_buf
*
buf
,
const
char
*
data
,
size_t
len
);
/*
* Insert, remove or replace a portion of the buffer.
...
...
src/diff_print.c
View file @
e003f83a
...
...
@@ -352,7 +352,7 @@ static int print_binary_hunk(diff_print_info *pi, git_blob *old, git_blob *new)
else
git_buf_putc
(
pi
->
buf
,
(
char
)
chunk_len
-
26
+
'a'
-
1
);
git_buf_
put
_base85
(
pi
->
buf
,
scan
,
chunk_len
);
git_buf_
encode
_base85
(
pi
->
buf
,
scan
,
chunk_len
);
git_buf_putc
(
pi
->
buf
,
'\n'
);
if
(
git_buf_oom
(
pi
->
buf
))
{
...
...
src/transports/http.c
View file @
e003f83a
...
...
@@ -98,7 +98,7 @@ static int apply_basic_credential(git_buf *buf, git_cred *cred)
if
(
git_buf_oom
(
&
raw
)
||
git_buf_puts
(
buf
,
"Authorization: Basic "
)
<
0
||
git_buf_
put
_base64
(
buf
,
git_buf_cstr
(
&
raw
),
raw
.
size
)
<
0
||
git_buf_
encode
_base64
(
buf
,
git_buf_cstr
(
&
raw
),
raw
.
size
)
<
0
||
git_buf_puts
(
buf
,
"
\r\n
"
)
<
0
)
goto
on_error
;
...
...
src/transports/winhttp.c
View file @
e003f83a
...
...
@@ -101,7 +101,7 @@ static int apply_basic_credential(HINTERNET request, git_cred *cred)
if
(
git_buf_oom
(
&
raw
)
||
git_buf_puts
(
&
buf
,
"Authorization: Basic "
)
<
0
||
git_buf_
put
_base64
(
&
buf
,
git_buf_cstr
(
&
raw
),
raw
.
size
)
<
0
)
git_buf_
encode
_base64
(
&
buf
,
git_buf_cstr
(
&
raw
),
raw
.
size
)
<
0
)
goto
on_error
;
if
((
wide_len
=
git__utf8_to_16_alloc
(
&
wide
,
git_buf_cstr
(
&
buf
)))
<
0
)
{
...
...
tests/core/buffer.c
View file @
e003f83a
...
...
@@ -748,7 +748,7 @@ void test_core_buffer__unescape(void)
assert_unescape
(
""
,
""
);
}
void
test_core_buffer__base64
(
void
)
void
test_core_buffer__
encode_
base64
(
void
)
{
git_buf
buf
=
GIT_BUF_INIT
;
...
...
@@ -759,33 +759,54 @@ void test_core_buffer__base64(void)
* 0x 1d 06 21 29 1c 30
* d G h p c w
*/
cl_git_pass
(
git_buf_
put
_base64
(
&
buf
,
"this"
,
4
));
cl_git_pass
(
git_buf_
encode
_base64
(
&
buf
,
"this"
,
4
));
cl_assert_equal_s
(
"dGhpcw=="
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
cl_git_pass
(
git_buf_
put
_base64
(
&
buf
,
"this!"
,
5
));
cl_git_pass
(
git_buf_
encode
_base64
(
&
buf
,
"this!"
,
5
));
cl_assert_equal_s
(
"dGhpcyE="
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
cl_git_pass
(
git_buf_
put
_base64
(
&
buf
,
"this!
\n
"
,
6
));
cl_git_pass
(
git_buf_
encode
_base64
(
&
buf
,
"this!
\n
"
,
6
));
cl_assert_equal_s
(
"dGhpcyEK"
,
buf
.
ptr
);
git_buf_free
(
&
buf
);
}
void
test_core_buffer__
base85
(
void
)
void
test_core_buffer__
decode_base64
(
void
)
{
git_buf
buf
=
GIT_BUF_INIT
;
cl_git_pass
(
git_buf_put_base85
(
&
buf
,
"this"
,
4
));
cl_git_pass
(
git_buf_decode_base64
(
&
buf
,
"dGhpcw=="
,
8
));
cl_assert_equal_s
(
"this"
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
cl_git_pass
(
git_buf_decode_base64
(
&
buf
,
"dGhpcyE="
,
8
));
cl_assert_equal_s
(
"this!"
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
cl_git_pass
(
git_buf_decode_base64
(
&
buf
,
"dGhpcyEK"
,
8
));
cl_assert_equal_s
(
"this!
\n
"
,
buf
.
ptr
);
cl_git_fail
(
git_buf_decode_base64
(
&
buf
,
"This is not a valid base64 string!!!"
,
36
));
cl_assert_equal_s
(
"this!
\n
"
,
buf
.
ptr
);
git_buf_free
(
&
buf
);
}
void
test_core_buffer__encode_base85
(
void
)
{
git_buf
buf
=
GIT_BUF_INIT
;
cl_git_pass
(
git_buf_encode_base85
(
&
buf
,
"this"
,
4
));
cl_assert_equal_s
(
"bZBXF"
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
cl_git_pass
(
git_buf_
put
_base85
(
&
buf
,
"two rnds"
,
8
));
cl_git_pass
(
git_buf_
encode
_base85
(
&
buf
,
"two rnds"
,
8
));
cl_assert_equal_s
(
"ba!tca&BaE"
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
cl_git_pass
(
git_buf_
put
_base85
(
&
buf
,
"this is base 85 encoded"
,
cl_git_pass
(
git_buf_
encode
_base85
(
&
buf
,
"this is base 85 encoded"
,
strlen
(
"this is base 85 encoded"
)));
cl_assert_equal_s
(
"bZBXFAZc?TVqtS-AUHK3Wo~0{WMyOk"
,
buf
.
ptr
);
git_buf_clear
(
&
buf
);
...
...
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