comparison 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
comparison
equal deleted inserted replaced
-1:000000000000 0:d7da3b1e1540
1 // small demo app that just includes a cipher/hash/prng
2
3 #include <mycrypt.h>
4
5 int main(void)
6 {
7 register_cipher(&rijndael_desc);
8 register_prng(&yarrow_desc);
9 register_hash(&sha256_desc);
10 return 0;
11 }