cryptopals_c

cryptopals crypto challenges solutions in pure c
git clone git://git.superpozycja.net/cryptopals_c
Log | Files | Refs | README

util.h (204B)


      1 #ifndef UTIL_H
      2 #define UTIL_H
      3 
      4 #include <stdio.h>
      5 #include <stdlib.h>
      6 #include <string.h>
      7 
      8 /* utility funcs */
      9 
     10 int hex_to_base64(char **b64, char *hex);
     11 int base64_to_hex(char **hex, char *b64);
     12 
     13 #endif