OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:algolen
(Results
1 - 3
of
3
) sorted by null
/external/dropbear/
cli-authpubkey.c
66
unsigned int
algolen
;
local
72
algotype = buf_getstring(ses.payload, &
algolen
);
73
keytype = signkey_type_from_name(algotype,
algolen
);
133
int
algolen
;
local
152
algoname = signkey_name_from_type(type, &
algolen
);
154
buf_putstring(ses.writepayload, algoname,
algolen
);
cli-kex.c
213
unsigned int hostlen,
algolen
;
local
229
algoname = signkey_name_from_type(ses.newkeys->algo_hostkey, &
algolen
);
260
if (strncmp(buf_getptr(line,
algolen
), algoname,
algolen
) != 0) {
265
buf_incrpos(line,
algolen
);
272
ret = cmp_base64_key(keyblob, keybloblen, algoname,
algolen
,
309
buf_putbytes(line, algoname,
algolen
);
svr-authpubkey.c
42
static int checkpubkey(unsigned char* algo, unsigned int
algolen
,
45
static void send_msg_userauth_pk_ok(unsigned char* algo, unsigned int
algolen
,
55
unsigned int
algolen
;
local
69
algo = buf_getstring(ses.payload, &
algolen
);
74
if (checkpubkey(algo,
algolen
, keyblob, keybloblen) == DROPBEAR_FAILURE) {
81
send_msg_userauth_pk_ok(algo,
algolen
, keyblob, keybloblen);
136
static void send_msg_userauth_pk_ok(unsigned char* algo, unsigned int
algolen
,
143
buf_putstring(ses.writepayload, algo,
algolen
);
154
static int checkpubkey(unsigned char* algo, unsigned int
algolen
,
166
if (have_algo(algo,
algolen
, sshhostkey) == DROPBEAR_FAILURE)
[
all
...]
Completed in 31 milliseconds