Searched refs:algo_type (Results 1 – 6 of 6) sorted by relevance
/external/dropbear/ |
D | algo.h | 41 typedef struct Algo_Type algo_type; typedef 44 extern algo_type sshkex[]; 45 extern algo_type sshhostkey[]; 46 extern algo_type sshciphers[]; 47 extern algo_type sshhashes[]; 48 extern algo_type sshcompress[]; 66 int have_algo(char* algo, size_t algolen, algo_type algos[]); 67 void buf_put_algolist(buffer * buf, algo_type localalgos[]); 69 algo_type * svr_buf_match_algo(buffer* buf, algo_type localalgos[], 71 algo_type * cli_buf_match_algo(buffer* buf, algo_type localalgos[],
|
D | common-algo.c | 88 algo_type sshciphers[] = { 111 algo_type sshhashes[] = { 124 algo_type sshcompress[] = { 132 algo_type sshhostkey[] = { 142 algo_type sshkex[] = { 195 int have_algo(char* algo, size_t algolen, algo_type algos[]) { in have_algo() 212 void buf_put_algolist(buffer * buf, algo_type localalgos[]) { in buf_put_algolist()
|
D | cli-algo.c | 36 algo_type * cli_buf_match_algo(buffer* buf, algo_type localalgos[], in cli_buf_match_algo() 43 algo_type * ret = NULL; in cli_buf_match_algo()
|
D | svr-algo.c | 35 algo_type * svr_buf_match_algo(buffer* buf, algo_type localalgos[], in svr_buf_match_algo() 43 algo_type * ret = NULL; in svr_buf_match_algo()
|
D | common-kex.c | 585 algo_type * c2s_hash_algo = NULL; in read_kex_algos() 586 algo_type * s2c_hash_algo = NULL; in read_kex_algos() 587 algo_type * c2s_cipher_algo = NULL; in read_kex_algos() 588 algo_type * s2c_cipher_algo = NULL; in read_kex_algos() 589 algo_type * c2s_comp_algo = NULL; in read_kex_algos() 590 algo_type * s2c_comp_algo = NULL; in read_kex_algos() 592 algo_type * algo = NULL; in read_kex_algos()
|
D | session.h | 141 algo_type*(*buf_match_algo)(buffer*buf, algo_type localalgos[],
|