comparison libtomcrypt/demos/small.c @ 297:79bf1023cf11 agent-client

propagate from branch 'au.asn.ucc.matt.dropbear' (head 0501e6f661b5415eb76f3b312d183c3adfbfb712) to branch 'au.asn.ucc.matt.dropbear.cli-agent' (head 01038174ec27245b51bd43a66c01ad930880f67b)
author Matt Johnston <matt@ucc.asn.au>
date Tue, 21 Mar 2006 16:20:59 +0000
parents 1b9e69c058d2
children 0cbe8f6dbf9e
comparison
equal deleted inserted replaced
225:ca7e76d981d9 297:79bf1023cf11
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 $ */