gecko-dev/webtools/bonsai/trapdoor.c

8 строки
127 B
C

#include <stdio.h>
#include <crypt.h>
main(int argc, char** argv) {
printf("%s\n", crypt(argv[1], "aa"));
return 0;
}