Mercurial > dropbear
view libtomcrypt/demos/small.c @ 1464:ad637c9e0f6f
Server chosen tcpfwd ports (#43)
Server chosen tcpfwd ports
author | houseofkodai <karthik@houseofkodai.in> |
---|---|
date | Thu, 25 Jan 2018 19:51:41 +0530 |
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$ */