The unified diff between revisions [d0935a5d..] and [e0686662..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'common-algo.c'
#
#
# patch "common-algo.c"
# from [ed536db796983916b20d9d7ceb67315d640175e9]
# to [37d9d05401ab9d81872628b05045b6437296e78b]
#
============================================================
--- common-algo.c ed536db796983916b20d9d7ceb67315d640175e9
+++ common-algo.c 37d9d05401ab9d81872628b05045b6437296e78b
@@ -125,7 +125,7 @@ void crypto_init() {
* 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