Searched refs:goodguess (Results 1 – 5 of 5) sorted by relevance
/external/dropbear/ |
D | cli-algo.c | 37 int *goodguess) { in cli_buf_match_algo() argument 45 *goodguess = 0; in cli_buf_match_algo() 86 *goodguess = 1; in cli_buf_match_algo()
|
D | svr-algo.c | 36 int *goodguess) in svr_buf_match_algo() argument 45 *goodguess = 0; in svr_buf_match_algo() 87 *goodguess = 1; in svr_buf_match_algo()
|
D | common-kex.c | 597 int goodguess = 0; in read_kex_algos() local 606 algo = ses.buf_match_algo(ses.payload, sshkex, &goodguess); in read_kex_algos() 607 allgood &= goodguess; in read_kex_algos() 616 algo = ses.buf_match_algo(ses.payload, sshhostkey, &goodguess); in read_kex_algos() 617 allgood &= goodguess; in read_kex_algos() 626 c2s_cipher_algo = ses.buf_match_algo(ses.payload, sshciphers, &goodguess); in read_kex_algos() 634 s2c_cipher_algo = ses.buf_match_algo(ses.payload, sshciphers, &goodguess); in read_kex_algos() 642 c2s_hash_algo = ses.buf_match_algo(ses.payload, sshhashes, &goodguess); in read_kex_algos() 650 s2c_hash_algo = ses.buf_match_algo(ses.payload, sshhashes, &goodguess); in read_kex_algos() 658 c2s_comp_algo = ses.buf_match_algo(ses.payload, sshcompress, &goodguess); in read_kex_algos() [all …]
|
D | algo.h | 70 int *goodguess); 72 int *goodguess);
|
D | session.h | 142 int *goodguess); /* The function to use to choose which algorithm
|