mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 13:21:15 +00:00
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 $ */
|