Home
last modified time | relevance | path

Searched refs:pklen (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dkexc25519s.c66 size_t slen, pklen, sbloblen, hashlen; in input_kex_c25519_init() local
88 if ((r = sshpkt_get_string(ssh, &client_pubkey, &pklen)) != 0 || in input_kex_c25519_init()
91 if (pklen != CURVE25519_SIZE) { in input_kex_c25519_init()
Dkexc25519c.c81 size_t slen, pklen, sbloblen, hashlen; in input_kex_c25519_reply() local
108 if ((r = sshpkt_get_string(ssh, &server_pubkey, &pklen)) != 0 || in input_kex_c25519_reply()
112 if (pklen != CURVE25519_SIZE) { in input_kex_c25519_reply()
Dsshkey.c2683 size_t pklen = 0, sklen = 0; in sshkey_private_deserialize() local
2797 if ((r = sshbuf_get_string(buf, &ed25519_pk, &pklen)) != 0 || in sshkey_private_deserialize()
2800 if (pklen != ED25519_PK_SZ || sklen != ED25519_SK_SZ) { in sshkey_private_deserialize()
2811 (r = sshbuf_get_string(buf, &ed25519_pk, &pklen)) != 0 || in sshkey_private_deserialize()
2814 if (pklen != ED25519_PK_SZ || sklen != ED25519_SK_SZ) { in sshkey_private_deserialize()
2854 explicit_bzero(ed25519_pk, pklen); in sshkey_private_deserialize()