Searched refs:localalgos (Results 1 – 2 of 2) sorted by relevance
/dports/security/dropbear/dropbear-2020.81/ |
H A D | common-algo.c | 348 for (i = 0; localalgos[i].name != NULL; i++) { in buf_put_algolist_all() 349 if (localalgos[i].usable || useall) { in buf_put_algolist_all() 354 len = strlen(localalgos[i].name); in buf_put_algolist_all() 366 void buf_put_algolist(buffer * buf, const algo_type localalgos[]) { in buf_put_algolist() argument 367 buf_put_algolist_all(buf, localalgos, 0); in buf_put_algolist() 451 algo_type * buf_match_algo(buffer* buf, algo_type localalgos[], in buf_match_algo() argument 470 for (i = 0; localalgos[i].name != NULL; i++) { in buf_match_algo() 471 if (localalgos[i].usable) { in buf_match_algo() 472 localnames[i] = localalgos[i].name; in buf_match_algo() 513 ret = &localalgos[j]; in buf_match_algo() [all …]
|
H A D | algo.h | 124 void buf_put_algolist_all(buffer * buf, const algo_type localalgos[], int useall); 126 void buf_put_algolist(buffer * buf, const algo_type localalgos[]); 132 algo_type * buf_match_algo(buffer* buf, algo_type localalgos[],
|