]>
git.siccegge.de Git - frida/frida.git/blob - samples/crypt/main.c
6 int check(char * str
) {
7 /* Ich bin der größte! */
8 static const char * correct
= "TOgP5hrln1SAE";
9 printf("%s\n", crypt(str
, "TOPSECRET"));
10 return ! strcmp(correct
, crypt(str
, "TOPSECRET"));
16 scanf("%s", password
);