Browse Source

Unlock tests

master
Krzysztof Kwiatkowski 8 years ago
parent
commit
2a71c5a3cf
2 changed files with 13 additions and 13 deletions
  1. +5
    -5
      src/main.cpp
  2. +8
    -8
      tst/utils.h

+ 5
- 5
src/main.cpp View File

@@ -15,11 +15,11 @@ int main()
OpenSSL_add_all_algorithms();

UTILS::run();
//
// SET3::run();
//
// SET1::run();
// SET2::run();
SET3::run();
SET1::run();
SET2::run();

/* Clean up */
EVP_cleanup();


+ 8
- 8
tst/utils.h View File

@@ -10,14 +10,14 @@ void c2b_test();

namespace UTILS {

void run() {
// hamming_test();
// hex_to_base64_test();
// convert_string_to_hex_test();
// xor_strings_test();
base64_test();
// c2b_test();
}
void run() {
hamming_test();
hex_to_base64_test();
convert_string_to_hex_test();
xor_strings_test();
base64_test();
c2b_test();
}

}



Loading…
Cancel
Save