OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:algos
(Results
1 - 5
of
5
) sorted by null
/external/dropbear/
common-algo.c
191
/* algolen specifies the length of algo,
algos
is our local list to match
195
int have_algo(char* algo, size_t algolen, algo_type
algos
[]) {
199
for (i = 0;
algos
[i].name != NULL; i++) {
200
if (strlen(
algos
[i].name) == algolen
201
&& (strncmp(
algos
[i].name, algo, algolen) == 0)) {
algo.h
66
int have_algo(char* algo, size_t algolen, algo_type
algos
[]);
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
KexManager.java
322
public static void checkServerHostkeyAlgorithmsList(String[]
algos
)
324
for (int i = 0; i <
algos
.length; i++)
326
if (("ssh-rsa".equals(
algos
[i]) == false) && ("ssh-dss".equals(
algos
[i]) == false))
327
throw new IllegalArgumentException("Unknown server host key algorithm '" +
algos
[i] + "'");
337
public static void checkKexAlgorithmList(String[]
algos
)
339
for (int i = 0; i <
algos
.length; i++)
341
if ("diffie-hellman-group-exchange-sha1".equals(
algos
[i]))
344
if ("diffie-hellman-group14-sha1".equals(
algos
[i]))
347
if ("diffie-hellman-group1-sha1".equals(
algos
[i])
[
all
...]
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
Connection.java
[
all
...]
KnownHosts.java
305
String[]
algos
= recommendHostkeyAlgorithms(hostname);
local
307
if (
algos
!= null)
309
return
algos
;
325
algos
= recommendHostkeyAlgorithms(ipAdresses[i].getHostAddress());
327
if (
algos
!= null)
329
return
algos
;
Completed in 4997 milliseconds