Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testClientHello (0.35 sec)

  1. src/crypto/tls/boring_test.go

    				cipherSuites:       []uint16{id},
    				compressionMethods: []uint8{compressionNone},
    				supportedCurves:    defaultCurvePreferences(),
    				supportedPoints:    []uint8{pointFormatUncompressed},
    			}
    
    			testClientHello(t, serverConfig, clientHello)
    			t.Run("fipstls", func(t *testing.T) {
    				fipstls.Force()
    				defer fipstls.Abandon()
    				msg := ""
    				if !isBoringCipherSuite(id) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    	"crypto/rand"
    	"crypto/x509"
    	"encoding/pem"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    )
    
    func testClientHello(t *testing.T, serverConfig *Config, m handshakeMessage) {
    	testClientHelloFailure(t, serverConfig, m, "")
    }
    
    // testFatal is a hack to prevent the compiler from complaining that there is a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top