Lines Matching full:algo
28 #include "algo.h"
580 /* read the other side's algo list. buf_match_algo is a callback to match
592 algo_type * algo = NULL;
594 /* which algo couldn't match */
606 algo = ses.buf_match_algo(ses.payload, sshkex, &goodguess);
608 if (algo == NULL) {
612 TRACE(("kex algo %s", algo->name))
613 ses.newkeys->algo_kex = algo->val;
616 algo = ses.buf_match_algo(ses.payload, sshhostkey, &goodguess);
618 if (algo == NULL) {
622 TRACE(("hostkey algo %s", algo->name))
623 ses.newkeys->algo_hostkey = algo->val;
719 dropbear_exit("no matching algo %s", erralgo);