mirror of
https://github.com/clearml/dropbear
synced 2025-04-05 21:25:08 +00:00
From crypt-1.05.tar.bz2, SHA1 of 88250202bb51570dc64f7e8f1c943cda9479258f --HG-- branch : libtomcrypt-orig extra : convert_revision : 5c0c50e93111636ccf8deb758a689ad713797baf
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 $ */
|