comparison demos/small.c @ 280:59400faa4b44 libtomcrypt-orig libtomcrypt-1.05

Re-import libtomcrypt 1.05 for cleaner propagating. From crypt-1.05.tar.bz2, SHA1 of 88250202bb51570dc64f7e8f1c943cda9479258f
author Matt Johnston <matt@ucc.asn.au>
date Wed, 08 Mar 2006 12:58:00 +0000
parents
children d5faf4814ddb
comparison
equal deleted inserted replaced
-1:000000000000 280:59400faa4b44
1 // small demo app that just includes a cipher/hash/prng
2 #include <tomcrypt.h>
3
4 int main(void)
5 {
6 register_cipher(&rijndael_enc_desc);
7 register_prng(&yarrow_desc);
8 register_hash(&sha256_desc);
9 return 0;
10 }
11
12 /* $Source: /cvs/libtom/libtomcrypt/demos/small.c,v $ */
13 /* $Revision: 1.2 $ */
14 /* $Date: 2005/05/05 14:35:56 $ */