diff options
author | Matt Johnston <matt@ucc.asn.au> | 2005-05-09 09:32:33 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2005-05-09 09:32:33 +0000 |
commit | 7b403dc57f0309360e6e431f2bf415cc8100024e (patch) | |
tree | 9f21b6aeb430a9eb366dc314dae41b8e530b990e /algo.h | |
parent | eb741b9cc950838f4cc0aa7d9ef4a4e6a14150fd (diff) |
Switching to libtomcrypt 1.02
(still has problems)
--HG--
extra : convert_revision : 4dfd70544ed9a766876ddda9f6ac3f26054eb3db
Diffstat (limited to 'algo.h')
-rw-r--r-- | algo.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,13 +51,13 @@ extern const struct dropbear_cipher dropbear_nocipher; extern const struct dropbear_hash dropbear_nohash; struct dropbear_cipher { - const struct _cipher_descriptor *cipherdesc; + const struct ltc_cipher_descriptor *cipherdesc; unsigned long keysize; unsigned char blocksize; }; struct dropbear_hash { - const struct _hash_descriptor *hashdesc; + const struct ltc_hash_descriptor *hashdesc; unsigned long keysize; unsigned char hashsize; }; |