www.pudn.com > cfgcrypt.rar > test.cpp
#include#include "cfgcrypt.h" using namespace std; int main(int argc, char* argv[]) { CCfgCrypt c1; string s; bool n1 = c1.getValue("gdibs@101", s); cout << n1 << '_' << s << endl; n1 = c1.getValue("cxuser@192.168.0.1", s); cout << n1 << '_' << s << endl; return 0; }