#include #include #include using namespace std; //compile: g++ hasher.cpp -o hasher -lcrypt int main(int argc, char** argv){ if (argc!=3) { cout << "Usage: $hasher " << endl; return 1; } cout << crypt(argv[1], argv[2]) << endl; return 0; }