cryptopals_c

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

c1.c (174B)


      1 #include <stdio.h>
      2 #include <util.h>
      3 
      4 int main(int argc, char* argv[]) 
      5 {
      6 	char* b64;
      7 	int ret;
      8 
      9 	if (hex_to_base64(&b64, argv[1]) == 0)
     10 		printf("%s\n", b64);
     11 
     12 	return 0;
     13 }