view libtomcrypt/demos/small.c @ 1451:7e95ab97d2b0

fix pubkey authentication return value
author Matt Johnston <matt@ucc.asn.au>
date Wed, 04 Oct 2017 22:29:42 +0800
parents f849a5ca2efc
children 6dba84798cd5
line wrap: on
line source

/* 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$ */
/* $Revision$ */
/* $Date$ */