Mercurial > dropbear
diff 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 diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/demos/small.c Mon May 31 18:21:40 2004 +0000 @@ -0,0 +1,11 @@ +// 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; +}