diff --git a/handshake_server.go b/handshake_server.go index a593700..b16415a 100644 --- a/handshake_server.go +++ b/handshake_server.go @@ -241,7 +241,7 @@ func (hs *serverHandshakeState) processClientHello() error { hs.ecdheOk = supportsECDHE(c.config, hs.clientHello.supportedCurves, hs.clientHello.supportedPoints) if hs.ecdheOk { - // Although omiting the ec_point_formats extension is permitted, some + // Although omitting the ec_point_formats extension is permitted, some // old OpenSSL version will refuse to handshake if not present. // // Per RFC 4492, section 5.1.2, implementations MUST support the diff --git a/handshake_server_test.go b/handshake_server_test.go index 2a44af0..1e5da1e 100644 --- a/handshake_server_test.go +++ b/handshake_server_test.go @@ -274,7 +274,7 @@ func TestTLS12OnlyCipherSuites(t *testing.T) { } func TestTLSPointFormats(t *testing.T) { - // Test that a Server returns the ec_point_format extention when ECC is + // Test that a Server returns the ec_point_format extension when ECC is // negotiated, and not returned on RSA handshake. tests := []struct { name string