aboutsummaryrefslogtreecommitdiff
path: root/main.cpp
blob: d11aba11117d11f1f247267b81379b915af9bdd8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "blowfish.hpp"
#include "vectors.h"
#include <cstdio>

void run_variable_key_wrapper();
void run_set_key_wrapper();

int main(int, char **) {
  run_variable_key_wrapper();
  run_set_key_wrapper();
  return 0;
}