Mercurial > dropbear
view demos/small.c @ 162:bc4e3ac2dd5a libtomcrypt
make data pointers volatile so that memory zeroing won't get optimised away
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 02 Jan 2005 17:09:05 +0000 |
parents | b939f2d4431e |
children | 9cc34777b479 |
line wrap: on
line source
// small demo app that just includes a cipher/hash/prng #include <mycrypt.h> int main(void) { register_cipher(&rijndael_enc_desc); register_prng(&yarrow_desc); register_hash(&sha256_desc); return 0; }