fortuna/main.cpp

11 lines
179 B
C++
Raw Permalink Normal View History

2021-11-10 23:55:58 +01:00
#include "fortuna.h"
2021-10-19 15:05:18 +02:00
#include <fmt/core.h>
2021-10-19 15:05:18 +02:00
int main() {
fmt::print("[*] doing evil stuff\n");
2021-11-10 23:55:58 +01:00
fortuna::Fortuna f;
f.random_data(4); // number of bytes requested
2021-10-19 15:05:18 +02:00
return 0;
}