Mercurial > dropbear
view demos/small.c @ 88:901233045998 libtomcrypt
Fix typo in the big-endian macros
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 02 Sep 2004 15:34:30 +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; }