mirror of
https://github.com/clearml/dropbear
synced 2025-06-26 18:17:32 +00:00
--HG-- branch : libtomcrypt-orig extra : convert_revision : 42edf60b8235e6aa06e306688266188818e41c03
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 $ */
|