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

  /src/crypto/external/bsd/openssh/dist/
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)
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)
kex.h 184 struct sshbuf *client_pub; member in struct:kex

Completed in 20 milliseconds