| /src/crypto/openssh/ |
| H A D | sshbuf.h | 37 struct sshbuf; 43 struct sshbuf *sshbuf_new(void); 49 struct sshbuf *sshbuf_from(const void *blob, size_t len); 57 struct sshbuf *sshbuf_fromb(struct sshbuf *buf); 66 int sshbuf_froms(struct sshbuf *buf, struct sshbuf **bufp); 71 void sshbuf_free(struct sshbuf *buf); 76 void sshbuf_reset(struct sshbuf *buf); 81 size_t sshbuf_max_size(const struct sshbuf *buf); 87 int sshbuf_set_max_size(struct sshbuf *buf, size_t max_size); 92 size_t sshbuf_len(const struct sshbuf *buf); [all …]
|
| H A D | kex.h | 140 struct sshbuf; 157 struct sshbuf *my; 158 struct sshbuf *peer; 159 struct sshbuf *client_version; 160 struct sshbuf *server_version; 161 struct sshbuf *session_id; 162 struct sshbuf *initial_sig; 185 struct sshbuf *client_pub; 209 int kex_buf2prop(struct sshbuf *, int *, char ***); 210 int kex_prop2buf(struct sshbuf *, char *proposal[PROPOSAL_MAX]); [all …]
|
| H A D | sshkey.h | 60 struct sshbuf; 115 struct sshbuf *certblob; /* Kept around for use on wire */ 122 struct sshbuf *critical; 123 struct sshbuf *extensions; 150 struct sshbuf *sk_key_handle; 151 struct sshbuf *sk_reserved; 175 int (*serialize_public)(const struct sshkey *, struct sshbuf *, 177 int (*deserialize_public)(const char *, struct sshbuf *, 179 int (*serialize_private)(const struct sshkey *, struct sshbuf *, 181 int (*deserialize_private)(const char *, struct sshbuf *, [all …]
|
| H A D | sshbuf-getput-basic.c | 35 sshbuf_get(struct sshbuf *buf, void *v, size_t len) in sshbuf_get() 48 sshbuf_get_u64(struct sshbuf *buf, u_int64_t *valp) in sshbuf_get_u64() 61 sshbuf_get_u32(struct sshbuf *buf, u_int32_t *valp) in sshbuf_get_u32() 74 sshbuf_get_u16(struct sshbuf *buf, u_int16_t *valp) in sshbuf_get_u16() 87 sshbuf_get_u8(struct sshbuf *buf, u_char *valp) in sshbuf_get_u8() 100 check_offset(const struct sshbuf *buf, int wr, size_t offset, size_t len) in check_offset() 114 check_roffset(const struct sshbuf *buf, size_t offset, size_t len, in check_roffset() 127 sshbuf_peek_u64(const struct sshbuf *buf, size_t offset, u_int64_t *valp) in sshbuf_peek_u64() 142 sshbuf_peek_u32(const struct sshbuf *buf, size_t offset, u_int32_t *valp) in sshbuf_peek_u32() 157 sshbuf_peek_u16(const struct sshbuf *buf, size_t offset, u_int16_t *valp) in sshbuf_peek_u16() [all …]
|
| H A D | sshsig.h | 21 struct sshbuf; 38 const char *sk_provider, const char *sk_pin, const struct sshbuf *message, 39 const char *sig_namespace, struct sshbuf **out, 47 int sshsig_verifyb(struct sshbuf *signature, 48 const struct sshbuf *message, const char *sig_namespace, 61 struct sshbuf **out, sshsig_signer *signer, void *signer_ctx); 68 int sshsig_verify_fd(struct sshbuf *signature, int fd, 77 int sshsig_armor(const struct sshbuf *blob, struct sshbuf **out); 82 int sshsig_dearmor(struct sshbuf *sig, struct sshbuf **out); 99 int sshsig_get_pubkey(struct sshbuf *signature, struct sshkey **pubkey);
|
| H A D | sshbuf.c | 42 struct sshbuf { struct 51 struct sshbuf *parent; /* If child, pointer to parent */ argument 55 sshbuf_check_sanity(const struct sshbuf *buf) in sshbuf_check_sanity() 77 sshbuf_maybe_pack(struct sshbuf *buf, int force) in sshbuf_maybe_pack() 92 struct sshbuf * 95 struct sshbuf *ret; in sshbuf_new() 111 struct sshbuf * 114 struct sshbuf *ret; in sshbuf_from() 129 sshbuf_set_parent(struct sshbuf *child, struct sshbuf *parent) in sshbuf_set_parent() 144 struct sshbuf * [all …]
|
| H A D | kexecdh.c | 46 kex_ecdh_dec_key_group(struct kex *, const struct sshbuf *, EC_KEY *key, 47 const EC_GROUP *, struct sshbuf **); 55 struct sshbuf *buf = NULL; in kex_ecdh_keypair() 92 kex_ecdh_enc(struct kex *kex, const struct sshbuf *client_blob, in kex_ecdh_enc() 93 struct sshbuf **server_blobp, struct sshbuf **shared_secretp) in kex_ecdh_enc() 98 struct sshbuf *server_blob = NULL; in kex_ecdh_enc() 138 kex_ecdh_dec_key_group(struct kex *kex, const struct sshbuf *ec_blob, in kex_ecdh_dec_key_group() 139 EC_KEY *key, const EC_GROUP *group, struct sshbuf **shared_secretp) in kex_ecdh_dec_key_group() 141 struct sshbuf *buf = NULL; in kex_ecdh_dec_key_group() 200 kex_ecdh_dec(struct kex *kex, const struct sshbuf *server_blob, in kex_ecdh_dec() [all …]
|
| H A D | kexsntrup761x25519.c | 49 struct sshbuf *buf = NULL; in kex_kem_sntrup761x25519_keypair() 78 const struct sshbuf *client_blob, struct sshbuf **server_blobp, in kex_kem_sntrup761x25519_enc() 79 struct sshbuf **shared_secretp) in kex_kem_sntrup761x25519_enc() 81 struct sshbuf *server_blob = NULL; in kex_kem_sntrup761x25519_enc() 82 struct sshbuf *buf = NULL; in kex_kem_sntrup761x25519_enc() 165 const struct sshbuf *server_blob, struct sshbuf **shared_secretp) in kex_kem_sntrup761x25519_dec() 167 struct sshbuf *buf = NULL; in kex_kem_sntrup761x25519_dec() 232 struct sshbuf; 243 const struct sshbuf *client_blob, struct sshbuf **server_blobp, in kex_kem_sntrup761x25519_enc() 244 struct sshbuf **shared_secretp) in kex_kem_sntrup761x25519_enc() [all …]
|
| H A D | kexc25519.c | 60 const u_char pub[CURVE25519_SIZE], struct sshbuf *out, int raw) in kexc25519_shared_key_ext() 86 const u_char pub[CURVE25519_SIZE], struct sshbuf *out) in kexc25519_shared_key() 94 struct sshbuf *buf = NULL; in kex_c25519_keypair() 114 kex_c25519_enc(struct kex *kex, const struct sshbuf *client_blob, in kex_c25519_enc() 115 struct sshbuf **server_blobp, struct sshbuf **shared_secretp) in kex_c25519_enc() 117 struct sshbuf *server_blob = NULL; in kex_c25519_enc() 118 struct sshbuf *buf = NULL; in kex_c25519_enc() 166 kex_c25519_dec(struct kex *kex, const struct sshbuf *server_blob, in kex_c25519_dec() 167 struct sshbuf **shared_secretp) in kex_c25519_dec() 169 struct sshbuf *buf = NULL; in kex_c25519_dec()
|
| H A D | kexmlkem768x25519.c | 55 struct sshbuf *buf = NULL; in kex_kem_mlkem768x25519_keypair() 93 const struct sshbuf *client_blob, struct sshbuf **server_blobp, in kex_kem_mlkem768x25519_enc() 94 struct sshbuf **shared_secretp) in kex_kem_mlkem768x25519_enc() 96 struct sshbuf *server_blob = NULL; in kex_kem_mlkem768x25519_enc() 97 struct sshbuf *buf = NULL; in kex_kem_mlkem768x25519_enc() 192 const struct sshbuf *server_blob, struct sshbuf **shared_secretp) in kex_kem_mlkem768x25519_dec() 194 struct sshbuf *buf = NULL; in kex_kem_mlkem768x25519_dec() 271 const struct sshbuf *client_blob, struct sshbuf **server_blobp, in kex_kem_mlkem768x25519_enc() 272 struct sshbuf **shared_secretp) in kex_kem_mlkem768x25519_enc() 279 const struct sshbuf *server_blob, struct sshbuf **shared_secretp) in kex_kem_mlkem768x25519_dec()
|
| H A D | sshkey-xmss.h | 38 int sshkey_xmss_serialize_state(const struct sshkey *, struct sshbuf *); 39 int sshkey_xmss_serialize_state_opt(const struct sshkey *, struct sshbuf *, 41 int sshkey_xmss_serialize_pk_info(const struct sshkey *, struct sshbuf *, 43 int sshkey_xmss_deserialize_state(struct sshkey *, struct sshbuf *); 44 int sshkey_xmss_deserialize_state_opt(struct sshkey *, struct sshbuf *); 45 int sshkey_xmss_deserialize_pk_info(struct sshkey *, struct sshbuf *);
|
| H A D | kexgen.c | 50 const struct sshbuf *client_version, in kex_gen_hash() 51 const struct sshbuf *server_version, in kex_gen_hash() 52 const struct sshbuf *client_kexinit, in kex_gen_hash() 53 const struct sshbuf *server_kexinit, in kex_gen_hash() 54 const struct sshbuf *server_host_key_blob, in kex_gen_hash() 55 const struct sshbuf *client_pub, in kex_gen_hash() 56 const struct sshbuf *server_pub, in kex_gen_hash() 57 const struct sshbuf *shared_secret, in kex_gen_hash() 60 struct sshbuf *b; in kex_gen_hash() 146 struct sshbuf *shared_secret = NULL; in input_kex_gen_reply() [all …]
|
| H A D | sshbuf-misc.c | 67 sshbuf_dump(const struct sshbuf *buf, FILE *f) in sshbuf_dump() 74 sshbuf_dtob16(struct sshbuf *buf) in sshbuf_dtob16() 94 sshbuf_dtob64(const struct sshbuf *d, struct sshbuf *b64, int wrap) in sshbuf_dtob64() 132 sshbuf_dtob64_string(const struct sshbuf *buf, int wrap) in sshbuf_dtob64_string() 134 struct sshbuf *tmp; in sshbuf_dtob64_string() 149 sshbuf_b64tod(struct sshbuf *buf, const char *b64) in sshbuf_b64tod() 172 sshbuf_dtourlb64(const struct sshbuf *d, struct sshbuf *b64, int wrap) in sshbuf_dtourlb64() 176 struct sshbuf *b = NULL; in sshbuf_dtourlb64() 215 sshbuf_dup_string(struct sshbuf *buf) in sshbuf_dup_string() 238 sshbuf_cmp(const struct sshbuf *b, size_t offset, in sshbuf_cmp() [all …]
|
| H A D | monitor_wrap.h | 61 void mm_decode_activate_server_options(struct ssh *ssh, struct sshbuf *m); 95 void mm_get_state(struct ssh *, struct include_list *, struct sshbuf *, 96 struct sshbuf **, uint64_t *, struct sshbuf **, struct sshbuf **, 97 u_char **, struct sshbuf **, struct sshbuf **);
|
| H A D | monitor.c | 110 extern struct sshbuf *cfg; 111 extern struct sshbuf *loginmsg; 116 static struct sshbuf *child_state; 120 int mm_answer_moduli(struct ssh *, int, struct sshbuf *); 121 int mm_answer_sign(struct ssh *, int, struct sshbuf *); 122 int mm_answer_pwnamallow(struct ssh *, int, struct sshbuf *); 123 int mm_answer_auth2_read_banner(struct ssh *, int, struct sshbuf *); 124 int mm_answer_authserv(struct ssh *, int, struct sshbuf *); 125 int mm_answer_authpassword(struct ssh *, int, struct sshbuf *); 126 int mm_answer_bsdauthquery(struct ssh *, int, struct sshbuf *); [all …]
|
| H A D | monitor.h | 70 struct sshbuf; 92 void mm_request_send(int, enum monitor_reqtype, struct sshbuf *); 93 void mm_request_receive(int, struct sshbuf *); 94 void mm_request_receive_expect(int, enum monitor_reqtype, struct sshbuf *); 98 void mm_encode_server_options(struct sshbuf *); 100 struct sshbuf *pack_hostkeys(void);
|
| H A D | kexdh.c | 73 kex_dh_compute_key(struct kex *kex, BIGNUM *dh_pub, struct sshbuf *out) in kex_dh_compute_key() 118 struct sshbuf *buf = NULL; in kex_dh_keypair() 143 kex_dh_enc(struct kex *kex, const struct sshbuf *client_blob, in kex_dh_enc() 144 struct sshbuf **server_blobp, struct sshbuf **shared_secretp) in kex_dh_enc() 147 struct sshbuf *server_blob = NULL; in kex_dh_enc() 175 kex_dh_dec(struct kex *kex, const struct sshbuf *dh_blob, in kex_dh_dec() 176 struct sshbuf **shared_secretp) in kex_dh_dec() 178 struct sshbuf *buf = NULL; in kex_dh_dec()
|
| H A D | monitor_wrap.c | 83 extern struct sshbuf *loginmsg; 89 struct sshbuf *log_msg; in mm_log_handler() 146 mm_request_send(int sock, enum monitor_reqtype type, struct sshbuf *m) in mm_request_send() 169 mm_request_receive(int sock, struct sshbuf *m) in mm_request_receive() 201 mm_request_receive_expect(int sock, enum monitor_reqtype type, struct sshbuf *m) in mm_request_receive_expect() 222 struct sshbuf *m; in mm_choose_dh() 257 struct sshbuf *m; in mm_sshkey_sign() 283 mm_decode_activate_server_options(struct ssh *ssh, struct sshbuf *m) in mm_decode_activate_server_options() 337 struct sshbuf *m; in mm_getpwnamallow() 399 struct sshbuf *m; in mm_auth2_read_banner() [all …]
|
| H A D | sshsig.c | 49 sshsig_armor(const struct sshbuf *blob, struct sshbuf **out) in sshsig_armor() 51 struct sshbuf *buf = NULL; in sshsig_armor() 88 sshsig_dearmor(struct sshbuf *sig, struct sshbuf **out) in sshsig_dearmor() 92 struct sshbuf *buf = NULL; in sshsig_dearmor() 93 struct sshbuf *sbuf = NULL; in sshsig_dearmor() 165 const char *sk_provider, const char *sk_pin, const struct sshbuf *h_message, in sshsig_wrap_sign() 166 const char *sig_namespace, struct sshbuf **out, in sshsig_wrap_sign() 172 struct sshbuf *blob = NULL; in sshsig_wrap_sign() 173 struct sshbuf *tosign = NULL; in sshsig_wrap_sign() 242 sshsig_parse_preamble(struct sshbuf *buf) in sshsig_parse_preamble() [all …]
|
| H A D | authfd.c | 138 ssh_request_reply(int sock, struct sshbuf *request, struct sshbuf *reply) in ssh_request_reply() 182 ssh_request_reply_decode(int sock, struct sshbuf *request) in ssh_request_reply_decode() 184 struct sshbuf *reply; in ssh_request_reply_decode() 219 struct sshbuf *msg; in ssh_lock_agent() 236 deserialise_identity2(struct sshbuf *ids, struct sshkey **keyp, char **commentp) in deserialise_identity2() 266 struct sshbuf *msg; in ssh_fetch_identitylist() 408 struct sshbuf *msg; in ssh_agent_sign() 458 encode_dest_constraint_hop(struct sshbuf *m, in encode_dest_constraint_hop() 461 struct sshbuf *b; in encode_dest_constraint_hop() 486 encode_dest_constraint(struct sshbuf *m, const struct dest_constraint *dc) in encode_dest_constraint() [all …]
|
| H A D | kexgex.c | 49 const struct sshbuf *client_version, in kexgex_hash() 50 const struct sshbuf *server_version, in kexgex_hash() 51 const struct sshbuf *client_kexinit, in kexgex_hash() 52 const struct sshbuf *server_kexinit, in kexgex_hash() 53 const struct sshbuf *server_host_key_blob, in kexgex_hash() 62 struct sshbuf *b; in kexgex_hash()
|
| H A D | ssh-sk-helper.c | 52 static struct sshbuf *reply_error(int r, char *fmt, ...) 55 static struct sshbuf * 60 struct sshbuf *resp; in reply_error() 90 static struct sshbuf * 91 process_sign(struct sshbuf *req) in process_sign() 94 struct sshbuf *resp, *kbuf; in process_sign() 148 static struct sshbuf * 149 process_enroll(struct sshbuf *req) in process_enroll() 155 struct sshbuf *challenge, *attest, *kbuf, *resp; in process_enroll() 212 static struct sshbuf * [all …]
|
| H A D | mux.c | 76 extern struct sshbuf *command; 85 struct sshbuf *cmd; 154 Channel *, struct sshbuf *, struct sshbuf *); 156 Channel *, struct sshbuf *, struct sshbuf *); 158 Channel *, struct sshbuf *, struct sshbuf *); 160 Channel *, struct sshbuf *, struct sshbuf *); 162 Channel *, struct sshbuf *, struct sshbuf *); 164 Channel *, struct sshbuf *, struct sshbuf *); 166 Channel *, struct sshbuf *, struct sshbuf *); 168 Channel *, struct sshbuf *, struct sshbuf *); [all …]
|
| H A D | sshbuf-getput-crypto.c | 36 sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM **valp) in sshbuf_get_bignum2() 74 sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g) in sshbuf_get_ec() 95 sshbuf_get_eckey(struct sshbuf *buf, EC_KEY *v) in sshbuf_get_eckey() 131 sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v) in sshbuf_put_bignum2() 154 sshbuf_put_ec(struct sshbuf *buf, const EC_POINT *v, const EC_GROUP *g) in sshbuf_put_ec() 174 sshbuf_put_eckey(struct sshbuf *buf, const EC_KEY *v) in sshbuf_put_eckey() 181 sshbuf_put_ec_pkey(struct sshbuf *buf, EVP_PKEY *pkey) in sshbuf_put_ec_pkey()
|
| /src/crypto/openssh/regress/unittests/sshbuf/ |
| H A D | Makefile | 16 SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c 17 SRCS+=sshbuf-io.c atomicio.c misc.c xmalloc.c log.c fatal.c ssherr.c cleanup.c
|