tls client interface consistency fix

Client for tls was using a function that wasn't declared on the
interface for it. The issue wasn't apparent because net stream
implemented that function.

I changed it to keep the interface promise of what's required to be
compatible with the tls client functionality.
This commit is contained in:
Purrie 2023-07-21 15:18:12 +02:00 committed by Andrew Kelley
parent c724cc6487
commit c4a1b54ebe

View File

@ -662,7 +662,11 @@ pub fn init(stream: anytype, ca_bundle: Certificate.Bundle, host: []const u8) In
P.AEAD.encrypt(ciphertext, auth_tag, &out_cleartext, ad, nonce, p.client_handshake_key);
const both_msgs = client_change_cipher_spec_msg ++ finished_msg;
try stream.writeAll(&both_msgs);
var both_msgs_vec = [_]std.os.iovec_const{.{
.iov_base = &both_msgs,
.iov_len = both_msgs.len,
}};
try stream.writevAll(&both_msgs_vec);
const client_secret = hkdfExpandLabel(P.Hkdf, p.master_secret, "c ap traffic", &handshake_hash, P.Hash.digest_length);
const server_secret = hkdfExpandLabel(P.Hkdf, p.master_secret, "s ap traffic", &handshake_hash, P.Hash.digest_length);