HomeSort by: relevance | last modified time | path
    Searched refs:client_pub (Results 1 - 8 of 8) sorted by relevancy

  /src/crypto/external/bsd/openssh/dist/
kexmlkem768x25519.c 78 kex->client_pub = buf;
94 const u_char *client_pub; local
113 client_pub = sshbuf_ptr(client_blob);
115 dump_digest("client public key mlkem768:", client_pub,
118 client_pub + crypto_kem_mlkem768_PUBLICKEYBYTES,
122 memcpy(mlkem_pub.value, client_pub, crypto_kem_mlkem768_PUBLICKEYBYTES);
149 client_pub += crypto_kem_mlkem768_PUBLICKEYBYTES;
150 if ((r = kexc25519_shared_key_ext(server_key, client_pub, buf, 1)) < 0)
kexsntrup761x25519.c 70 kex->client_pub = buf;
84 const u_char *client_pub; local
100 client_pub = sshbuf_ptr(client_blob);
102 dump_digest("client public key sntrup761:", client_pub,
105 client_pub + crypto_kem_sntrup761_PUBLICKEYBYTES,
126 crypto_kem_sntrup761_enc(ciphertext, kem_key, client_pub);
131 client_pub += crypto_kem_sntrup761_PUBLICKEYBYTES;
132 if ((r = kexc25519_shared_key_ext(server_key, client_pub, buf, 1)) < 0)
kexc25519.c 106 kex->client_pub = buf;
119 const u_char *client_pub; local
131 client_pub = sshbuf_ptr(client_blob);
133 dump_digest("client public key 25519:", client_pub, CURVE25519_SIZE);
148 if ((r = kexc25519_shared_key_ext(server_key, client_pub, buf, 0)) < 0)
kexgen.c 57 const struct sshbuf *client_pub,
79 (r = sshbuf_put_stringb(b, client_pub)) != 0 ||
135 (r = sshpkt_put_stringb(ssh, kex->client_pub)) != 0 ||
220 kex->client_pub,
263 sshbuf_free(kex->client_pub);
264 kex->client_pub = NULL;
kexdh.c 132 kex->client_pub = buf;
kexecdh.c 82 kex->client_pub = buf;
kex.h 184 struct sshbuf *client_pub; member in struct:kex
kex.c 744 sshbuf_free(kex->client_pub);

Completed in 33 milliseconds