diff options
| author | Benedict <benedict@0xb8000.de> | 2016-08-11 18:56:21 +0200 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | b2aa636bfee0c4a7f607eaad06803cd7c42d8214 (patch) | |
| tree | b567626a8f22d46044f8b1aaf81d6fdbd7dc57ba /lib/lib3.h | |
| parent | 62fa141050aa054183fb781fed8e782f99e6072f (diff) | |
set3, challenge 22 completed
Diffstat (limited to 'lib/lib3.h')
| -rw-r--r-- | lib/lib3.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,6 +5,8 @@ #include <string.h> #include <stdlib.h> #include <openssl/aes.h> +#include <unistd.h> +#include <time.h> #define BLOCKSIZE 16 @@ -29,5 +31,6 @@ int aes_ctr(char *in, int length_in, char *out, char *string_key, char *nonce); void mt_19937_seed(unsigned int seed); int mt_19937(); - +int mt_19937_timestamp_orcale(); +void mt_19937_brute_force_timestamp(); #endif |
