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 /common-algo.c | |
parent | eb741b9cc950838f4cc0aa7d9ef4a4e6a14150fd (diff) |
Switching to libtomcrypt 1.02
(still has problems)
--HG--
extra : convert_revision : 4dfd70544ed9a766876ddda9f6ac3f26054eb3db
Diffstat (limited to 'common-algo.c')
-rw-r--r-- | common-algo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common-algo.c b/common-algo.c index 1975864..ea9c311 100644 --- a/common-algo.c +++ b/common-algo.c @@ -125,7 +125,7 @@ algo_type sshkex[] = { * This should be run before using any of the ciphers/hashes */ void crypto_init() { - const struct _cipher_descriptor *regciphers[] = { + const struct ltc_cipher_descriptor *regciphers[] = { #ifdef DROPBEAR_AES128_CBC &aes_desc, #endif @@ -141,7 +141,7 @@ void crypto_init() { NULL }; - const struct _hash_descriptor *reghashes[] = { + const struct ltc_hash_descriptor *reghashes[] = { /* we need sha1 for hostkey stuff regardless */ &sha1_desc, #ifdef DROPBEAR_MD5_HMAC |