repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
m68k: regenerate libm test ULPs
[glibc.git]
/
crypt
/
md5c-test.c
blob
c80e40202d5044eb3b69f2ec81b9eb04eac50d31
1
#include <crypt.h>
2
#include <string.h>
3
4
int
5
main
(
int
argc
,
char
*
argv
[])
6
{
7
const char
salt
[] =
"$1$saltstring"
;
8
char
*
cp
;
9
int
result
=
0
;
10
11
cp
=
crypt
(
"Hello world!"
,
salt
);
12
13
/* MD5 is disabled in FIPS mode. */
14
if
(
cp
)
15
result
|=
strcmp
(
"$1$saltstri$YMyguxXMBpd2TEZ.vS/3q1"
,
cp
);
16
17
return
result
;
18
}