// testTripleWrap.cpp : Defines the entry point for the console application. // #ifdef WIN32 #include "stdafx.h" #endif //WIN32 #include #include "string.h" void testTripleWrap(int argc, char* argv[]); void testTripleUnwrap(int argc, char* argv[]); void testSmimeV2(); int main(int argc, char* argv[]) { if (argc > 1 && ( strcmp(argv[1], "/?") == 0 || strstr(argv[1], "help") != NULL)) { printf("USAGE: testTripleWrap [EncapContentFile.bin 1.2.?.?.? (EncapContentOid)]\n"); return(0); } testSmimeV2(); testTripleWrap(argc, argv); testTripleUnwrap(argc, argv); return(0); }