00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "wave-crypto/wave-crypto.h"
00035
00036 #include <iostream>
00037
00038 #include "common/wave_ex.h"
00039 #include "perf/perf.h"
00040
00041
00042 struct test_t {
00043 const char * input;
00044 int minSize;
00045 };
00046
00047
00048 static const test_t s_tests[] = {
00049
00050 { "test", 0 },
00051 { "test", 1 },
00052 { "test", 4 },
00053 { "test", 100 },
00054 { "test", -5 },
00055 { "Hello World!", 0 },
00056 { "Hello World!", 8 },
00057 { "Hello World!", 12 },
00058 { "Hello World!", -4 },
00059 { "Hello World!", 25 },
00060 { "", 0 },
00061 { "", -1 },
00062 { "", 1 },
00063 { "", 16 },
00064 { "abcdefghijklmnopqrstuvwxyz", 0 },
00065 { "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 0 },
00066 { "01234567890", 0 },
00067 { ":", 0 },
00068 { ":", -1 },
00069 { ":", 5 },
00070
00071
00072 { NULL, 0 }
00073 };
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083 static void
00084 doTest
00085 (
00086 IN crypto::DESKey * key,
00087 IN const char * data,
00088 IN int minSize
00089 )
00090 {
00091 ASSERT(key, "null");
00092 ASSERT(data, "null");
00093
00094 long bytes = strlen(data);
00095 DPRINTF("'%s': %ld bytes", data, bytes);
00096 DPRINTF(" Requesting min size of %d bytes", minSize);
00097
00098 std::string enc = key->encrypt(data, minSize);
00099 DPRINTF(" Encrypted: '%s'", enc.c_str());
00100
00101 std::string dec = key->decrypt(enc.c_str());
00102 DPRINTF(" Decrypted: '%s'", dec.c_str());
00103 if (data != dec) {
00104 WAVE_EX(wex);
00105 wex << "Decrypted string does not match input!";
00106 }
00107 }
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117 int
00118 main
00119 (
00120 IN int argc,
00121 IN const char * argv[]
00122 )
00123 {
00124 int retval = 0;
00125 try {
00126 smart_ptr<crypto::DESKey> key = crypto::DESKey::create();
00127 if (!key) {
00128 WAVE_EX(wex);
00129 wex << "Failed to create DES key?";
00130 }
00131
00132 for (const test_t * p = s_tests; p->input; ++p) {
00133 doTest(key, p->input, p->minSize);
00134 }
00135
00136 } catch (std::exception& e) {
00137 DPRINTF("Exception: %s", e.what());
00138 retval = 1;
00139 } catch (...) {
00140 DPRINTF("Unknown exception!");
00141 retval = 2;
00142 }
00143 perf::dumpTimingSummary(std::cerr);
00144
00145 return retval;
00146 }
00147