Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
1eb719f2
Commit
1eb719f2
authored
Dec 24, 2012
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Checking for endianness in runtime in MD5 and SHA code
parent
bf633082
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
21 deletions
+24
-21
mongoose.c
mongoose.c
+24
-21
No files found.
mongoose.c
View file @
1eb719f2
...
@@ -1985,19 +1985,18 @@ typedef struct MD5Context {
...
@@ -1985,19 +1985,18 @@ typedef struct MD5Context {
unsigned
char
in
[
64
];
unsigned
char
in
[
64
];
}
MD5_CTX
;
}
MD5_CTX
;
#if defined(__BYTE_ORDER) && (__BYTE_ORDER == 1234)
#define byteReverse(buf, len) // Do nothing
#else
static
void
byteReverse
(
unsigned
char
*
buf
,
unsigned
longs
)
{
static
void
byteReverse
(
unsigned
char
*
buf
,
unsigned
longs
)
{
static
const
int
endianess_check
=
1
;
uint32_t
t
;
uint32_t
t
;
if
(((
char
*
)
&
endianess_check
)[
0
]
==
1
)
{
do
{
do
{
t
=
(
uint32_t
)
((
unsigned
)
buf
[
3
]
<<
8
|
buf
[
2
])
<<
16
|
t
=
(
uint32_t
)
((
unsigned
)
buf
[
3
]
<<
8
|
buf
[
2
])
<<
16
|
((
unsigned
)
buf
[
1
]
<<
8
|
buf
[
0
]);
((
unsigned
)
buf
[
1
]
<<
8
|
buf
[
0
]);
*
(
uint32_t
*
)
buf
=
t
;
*
(
uint32_t
*
)
buf
=
t
;
buf
+=
4
;
buf
+=
4
;
}
while
(
--
longs
);
}
while
(
--
longs
);
}
}
}
#endif
#define F1(x, y, z) (z ^ (x & (y ^ z)))
#define F1(x, y, z) (z ^ (x & (y ^ z)))
#define F2(x, y, z) F1(z, x, y)
#define F2(x, y, z) F1(z, x, y)
...
@@ -3622,18 +3621,23 @@ static void handle_propfind(struct mg_connection *conn, const char *path,
...
@@ -3622,18 +3621,23 @@ static void handle_propfind(struct mg_connection *conn, const char *path,
#if defined(__sun)
#if defined(__sun)
#include "solarisfixes.h"
#include "solarisfixes.h"
#endif
#endif
union
char64long16
{
unsigned
char
c
[
64
];
uint32_t
l
[
16
];
};
#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
#define rol(value, bits) (((value) << (bits)) | ((value) >> (32 - (bits))))
#if BYTE_ORDER == LITTLE_ENDIAN
#define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
static
uint32_t
blk0
(
union
char64long16
*
block
,
int
i
)
{
|
(
rol
(
block
->
l
[
i
],
8
)
&
0x00FF00FF
))
static
const
int
endianess_check
=
1
;
#elif BYTE_ORDER == BIG_ENDIAN
if
(((
char
*
)
&
endianess_check
)[
0
]
==
1
)
{
#define blk0(i) block->l[i]
block
->
l
[
i
]
=
(
rol
(
block
->
l
[
i
],
24
)
&
0xFF00FF00
)
|
#else
(
rol
(
block
->
l
[
i
],
8
)
&
0x00FF00FF
);
#error "Endianness not defined!"
}
#endif
return
block
->
l
[
i
];
}
#define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
#define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
^
block
->
l
[(
i
+
2
)
&
15
]
^
block
->
l
[
i
&
15
],
1
))
^
block
->
l
[(
i
+
2
)
&
15
]
^
block
->
l
[
i
&
15
],
1
))
#define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30);
#define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(
block,
i)+0x5A827999+rol(v,5);w=rol(w,30);
#define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
#define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30);
#define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
#define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30);
#define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
#define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30);
...
@@ -3647,9 +3651,8 @@ typedef struct {
...
@@ -3647,9 +3651,8 @@ typedef struct {
static
void
SHA1Transform
(
uint32_t
state
[
5
],
const
unsigned
char
buffer
[
64
])
{
static
void
SHA1Transform
(
uint32_t
state
[
5
],
const
unsigned
char
buffer
[
64
])
{
uint32_t
a
,
b
,
c
,
d
,
e
;
uint32_t
a
,
b
,
c
,
d
,
e
;
typedef
union
{
unsigned
char
c
[
64
];
uint32_t
l
[
16
];
}
CHAR64LONG16
;
union
char64long16
block
[
1
]
;
CHAR64LONG16
block
[
1
];
memcpy
(
block
,
buffer
,
64
);
memcpy
(
block
,
buffer
,
64
);
a
=
state
[
0
];
a
=
state
[
0
];
b
=
state
[
1
];
b
=
state
[
1
];
...
...
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