Home
last modified time | relevance | path

Searched refs:sshbuf_get_u32 (Results 1 – 16 of 16) sorted by relevance

/external/openssh/
Dsftp-common.c110 if ((r = sshbuf_get_u32(b, &a->flags)) != 0) in decode_attrib()
117 if ((r = sshbuf_get_u32(b, &a->uid)) != 0 || in decode_attrib()
118 (r = sshbuf_get_u32(b, &a->gid)) != 0) in decode_attrib()
122 if ((r = sshbuf_get_u32(b, &a->perm)) != 0) in decode_attrib()
126 if ((r = sshbuf_get_u32(b, &a->atime)) != 0 || in decode_attrib()
127 (r = sshbuf_get_u32(b, &a->mtime)) != 0) in decode_attrib()
137 if ((r = sshbuf_get_u32(b, &count)) != 0) in decode_attrib()
Dsftp-client.c142 if ((r = sshbuf_get_u32(m, &msg_len)) != 0) in get_msg()
208 (r = sshbuf_get_u32(msg, &id)) != 0) in get_status()
217 if ((r = sshbuf_get_u32(msg, &status)) != 0) in get_status()
247 (r = sshbuf_get_u32(msg, &id)) != 0) in get_handle()
254 if ((r = sshbuf_get_u32(msg, &status)) != 0) in get_handle()
285 (r = sshbuf_get_u32(msg, &id)) != 0) in get_decode_stat()
294 if ((r = sshbuf_get_u32(msg, &status)) != 0) in get_decode_stat()
331 (r = sshbuf_get_u32(msg, &id)) != 0) in get_decode_statvfs()
340 if ((r = sshbuf_get_u32(msg, &status)) != 0) in get_decode_statvfs()
414 if ((r = sshbuf_get_u32(msg, &ret->version)) != 0) in do_init()
[all …]
Dpacket.c2531 (r = sshbuf_get_u32(b, (u_int *)&enc->enabled)) != 0 || in newkeys_from_blob()
2532 (r = sshbuf_get_u32(b, &enc->block_size)) != 0 || in newkeys_from_blob()
2541 if ((r = sshbuf_get_u32(b, (u_int *)&mac->enabled)) != 0 || in newkeys_from_blob()
2550 if ((r = sshbuf_get_u32(b, &comp->type)) != 0 || in newkeys_from_blob()
2551 (r = sshbuf_get_u32(b, (u_int *)&comp->enabled)) != 0 || in newkeys_from_blob()
2590 (r = sshbuf_get_u32(m, &kex->we_need)) != 0 || in kex_from_blob()
2591 (r = sshbuf_get_u32(m, (u_int *)&kex->hostkey_type)) != 0 || in kex_from_blob()
2592 (r = sshbuf_get_u32(m, &kex->kex_type)) != 0 || in kex_from_blob()
2595 (r = sshbuf_get_u32(m, &kex->flags)) != 0 || in kex_from_blob()
2634 if ((r = sshbuf_get_u32(m, &state->remote_protocol_flags)) != 0 || in ssh_packet_set_state()
[all …]
Dssh-agent.c310 if ((r = sshbuf_get_u32(e->request, NULL)) != 0 || /* ignored */ in process_authentication_challenge1()
320 (r = sshbuf_get_u32(e->request, &response_type)) != 0) in process_authentication_challenge1()
387 (r = sshbuf_get_u32(e->request, &flags)) != 0) in process_sign_request2()
447 if ((r = sshbuf_get_u32(e->request, &bits)) != 0 || in process_remove_identity()
558 if ((r = sshbuf_get_u32(m, NULL)) != 0 || /* ignored */ in agent_decode_rsa1()
623 if ((r = sshbuf_get_u32(e->request, &seconds)) != 0) { in process_add_identity()
750 if ((r = sshbuf_get_u32(e->request, &seconds)) != 0) in process_add_smartcard_key()
Dsshbuf-getput-basic.c56 sshbuf_get_u32(struct sshbuf *buf, u_int32_t *valp) in sshbuf_get_u32() function
226 (r = sshbuf_get_u32(buf, &len)) != 0 || in sshbuf_get_stringb()
Dbufaux.c56 if ((ret = sshbuf_get_u32(buffer, v)) != 0) { in buffer_get_int_ret()
Dsftp-server.c652 if ((r = sshbuf_get_u32(iqueue, &version)) != 0) in process_init()
688 (r = sshbuf_get_u32(iqueue, &pflags)) != 0 || /* portable flags */ in process_open()
746 (r = sshbuf_get_u32(iqueue, &len)) != 0) in process_read()
1439 if ((r = sshbuf_get_u32(iqueue, &id)) != 0) in process()
1446 if ((r = sshbuf_get_u32(iqueue, &id)) != 0) in process()
Dauthfd.c213 if ((r = sshbuf_get_u32(ids, &bits)) != 0 || in deserialise_identity1()
313 if ((r = sshbuf_get_u32(msg, &num)) != 0) in ssh_fetch_identitylist()
Dsshkey.c1848 (ret = sshbuf_get_u32(b, &key->cert->type)) != 0 || in cert_parse()
3222 (r = sshbuf_get_u32(decoded, &nkeys)) != 0 || in sshkey_parse_private2()
3224 (r = sshbuf_get_u32(decoded, &encrypted_len)) != 0) in sshkey_parse_private2()
3268 (r = sshbuf_get_u32(kdf, &rounds)) != 0) in sshkey_parse_private2()
3304 if ((r = sshbuf_get_u32(decrypted, &check1)) != 0 || in sshkey_parse_private2()
3305 (r = sshbuf_get_u32(decrypted, &check2)) != 0) in sshkey_parse_private2()
3590 (r = sshbuf_get_u32(copy, NULL)) != 0 || /* reserved */ in sshkey_parse_public_rsa1_fileblob()
3591 (r = sshbuf_get_u32(copy, NULL)) != 0) /* key bits */ in sshkey_parse_public_rsa1_fileblob()
3664 (r = sshbuf_get_u32(copy, NULL)) != 0) /* reserved */ in sshkey_parse_private_rsa1()
3668 if ((r = sshbuf_get_u32(copy, NULL)) != 0 || /* key bits */ in sshkey_parse_private_rsa1()
Dssh-keysign.c256 if ((r = sshbuf_get_u32(b, (u_int *)&fd)) != 0) in main()
Dssh-keyscan.c217 (r = sshbuf_get_u32(msg, NULL)) != 0 || in keygrab_ssh1()
221 (r = sshbuf_get_u32(msg, NULL)) != 0 || in keygrab_ssh1()
Dsshbuf.h172 int sshbuf_get_u32(struct sshbuf *buf, u_int32_t *valp);
Dssh-keygen.c417 if ((r = sshbuf_get_u32(b, &bignum_bits)) != 0) in buffer_get_bignum_bits()
443 if ((r = sshbuf_get_u32(b, &magic)) != 0) in do_convert_private_ssh2_from_blob()
452 if ((r = sshbuf_get_u32(b, &i1)) != 0 || in do_convert_private_ssh2_from_blob()
455 (r = sshbuf_get_u32(b, &i2)) != 0 || in do_convert_private_ssh2_from_blob()
456 (r = sshbuf_get_u32(b, &i3)) != 0 || in do_convert_private_ssh2_from_blob()
457 (r = sshbuf_get_u32(b, &i4)) != 0) in do_convert_private_ssh2_from_blob()
Dkex.c275 (r = sshbuf_get_u32(b, &i)) != 0) /* reserved */ in kex_buf2prop()
Dkrl.c957 if ((r = sshbuf_get_u32(copy, &format_version)) != 0) in ssh_krl_from_blob()
Dmonitor.c702 if ((r = sshbuf_get_u32(m, &keyid)) != 0 || in mm_answer_sign()