mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 13:21:15 +00:00
to branch 'au.asn.ucc.matt.dropbear' (head fdf4a7a3b97ae5046139915de7e40399cceb2c01) --HG-- extra : convert_revision : dc4809882e1b9f2dcd3f8bbe38c74a0a52c39ce4
15 lines
331 B
C
15 lines
331 B
C
// small demo app that just includes a cipher/hash/prng
|
|
#include <tomcrypt.h>
|
|
|
|
int main(void)
|
|
{
|
|
register_cipher(&rijndael_enc_desc);
|
|
register_prng(&yarrow_desc);
|
|
register_hash(&sha256_desc);
|
|
return 0;
|
|
}
|
|
|
|
/* $Source: /cvs/libtom/libtomcrypt/demos/small.c,v $ */
|
|
/* $Revision: 1.2 $ */
|
|
/* $Date: 2005/05/05 14:35:56 $ */
|