Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a9ebc706
Commit
a9ebc706
authored
Jan 12, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Change HTTP_EncodeBase64 to operate on a series of bytes, instead of text.
Change HTTP_EncodeBasicAuth to convert the username and password into utf8 before base64 encoding.
parent
9efe083e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
13 deletions
+15
-13
http.c
dlls/wininet/http.c
+15
-13
No files found.
dlls/wininet/http.c
View file @
a9ebc706
...
...
@@ -846,22 +846,22 @@ end:
}
/***********************************************************************
* HTTP_
De
codeBase64
* HTTP_
En
codeBase64
*/
static
UINT
HTTP_EncodeBase64
(
LPC
WSTR
bi
n
,
LPWSTR
base64
)
static
UINT
HTTP_EncodeBase64
(
LPC
STR
bin
,
unsigned
int
le
n
,
LPWSTR
base64
)
{
UINT
n
=
0
,
x
;
static
LPCSTR
HTTP_Base64Enc
=
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
;
while
(
bin
[
0
]
)
while
(
len
>
0
)
{
/* first 6 bits, all from bin[0] */
base64
[
n
++
]
=
HTTP_Base64Enc
[(
bin
[
0
]
&
0xfc
)
>>
2
];
x
=
(
bin
[
0
]
&
3
)
<<
4
;
/* next 6 bits, 2 from bin[0] and 4 from bin[1] */
if
(
!
bin
[
1
]
)
if
(
len
==
1
)
{
base64
[
n
++
]
=
HTTP_Base64Enc
[
x
];
base64
[
n
++
]
=
'='
;
...
...
@@ -872,7 +872,7 @@ static UINT HTTP_EncodeBase64( LPCWSTR bin, LPWSTR base64 )
x
=
(
bin
[
1
]
&
0x0f
)
<<
2
;
/* next 6 bits 4 from bin[1] and 2 from bin[2] */
if
(
!
bin
[
2
]
)
if
(
len
==
2
)
{
base64
[
n
++
]
=
HTTP_Base64Enc
[
x
];
base64
[
n
++
]
=
'='
;
...
...
@@ -883,6 +883,7 @@ static UINT HTTP_EncodeBase64( LPCWSTR bin, LPWSTR base64 )
/* last 6 bits, all from bin [2] */
base64
[
n
++
]
=
HTTP_Base64Enc
[
bin
[
2
]
&
0x3f
];
bin
+=
3
;
len
-=
3
;
}
base64
[
n
]
=
0
;
return
n
;
...
...
@@ -896,12 +897,13 @@ static UINT HTTP_EncodeBase64( LPCWSTR bin, LPWSTR base64 )
static
LPWSTR
HTTP_EncodeBasicAuth
(
LPCWSTR
username
,
LPCWSTR
password
)
{
UINT
len
;
LPWSTR
in
,
out
;
char
*
in
;
LPWSTR
out
;
static
const
WCHAR
szBasic
[]
=
{
'B'
,
'a'
,
's'
,
'i'
,
'c'
,
' '
,
0
};
static
const
WCHAR
szColon
[]
=
{
':'
,
0
};
len
=
lstrlenW
(
username
)
+
1
+
lstrlenW
(
password
)
+
1
;
in
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
*
sizeof
(
WCHAR
)
);
len
=
WideCharToMultiByte
(
CP_UTF8
,
0
,
username
,
lstrlenW
(
username
),
NULL
,
0
,
NULL
,
NULL
)
+
1
+
WideCharToMultiByte
(
CP_UTF8
,
0
,
password
,
lstrlenW
(
password
),
NULL
,
0
,
NULL
,
NULL
);
in
=
HeapAlloc
(
GetProcessHeap
(),
0
,
(
len
+
1
)
*
sizeof
(
CHAR
)
);
if
(
!
in
)
return
NULL
;
...
...
@@ -910,11 +912,11 @@ static LPWSTR HTTP_EncodeBasicAuth( LPCWSTR username, LPCWSTR password)
out
=
HeapAlloc
(
GetProcessHeap
(),
0
,
len
*
sizeof
(
WCHAR
)
);
if
(
out
)
{
lstrcpyW
(
in
,
username
);
lstrcatW
(
in
,
szColon
);
lstrcatW
(
in
,
password
);
WideCharToMultiByte
(
CP_UTF8
,
0
,
username
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
strcat
(
in
,
":"
);
WideCharToMultiByte
(
CP_UTF8
,
0
,
password
,
-
1
,
NULL
,
0
,
NULL
,
NULL
);
lstrcpyW
(
out
,
szBasic
);
HTTP_EncodeBase64
(
in
,
&
out
[
strlenW
(
out
)]
);
HTTP_EncodeBase64
(
in
,
len
,
&
out
[
strlenW
(
out
)]
);
}
HeapFree
(
GetProcessHeap
(),
0
,
in
);
...
...
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