comparison libtomcrypt/demos/small.c @ 330:5488db2e9e4e

merge of 332f709a4cb39cde4cedab7c3be89e05f3023067 and ca4ca78b82c5d430c69ce01bf794e8886ce81431
author Matt Johnston <matt@ucc.asn.au>
date Sat, 10 Jun 2006 16:39:40 +0000
parents 1b9e69c058d2
children 0cbe8f6dbf9e
comparison
equal deleted inserted replaced
329:8ed0dce45126 330:5488db2e9e4e
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 $ */