Mercurial > dropbear
view libtomcrypt/demos/small.c @ 1468:b528e3753af4
define CLOCK_MONOTONIC if needed
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 08 Feb 2018 22:07:59 +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$ */