view demos/small.c @ 0:d7da3b1e1540 libtomcrypt

put back the 0.95 makefile which was inadvertently merged over
author Matt Johnston <matt@ucc.asn.au>
date Mon, 31 May 2004 18:21:40 +0000
parents
children 6362d3854bb4
line wrap: on
line source

// small demo app that just includes a cipher/hash/prng

#include <mycrypt.h>

int main(void)
{
   register_cipher(&rijndael_desc);
   register_prng(&yarrow_desc);
   register_hash(&sha256_desc);
   return 0;
}