Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 86 for tlsv3 (0.12 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-AES256-SHA384

    Filippo Valsorda <******@****.***> 1684936196 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-ALPN-NotConfigured

    Filippo Valsorda <******@****.***> 1684936196 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-RSA-RSAPSS

    Filippo Valsorda <******@****.***> 1684936196 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Server-TLSv13-Resume-HelloRetryRequest

    Filippo Valsorda <******@****.***> 1684936196 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Client-TLSv13-AES128-SHA256

    Roland Shoemaker <******@****.***> 1715710936 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    Filippo Valsorda <******@****.***> 1684936196 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv13-X25519-ECDHE

    Roland Shoemaker <******@****.***> 1715710936 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv13-ALPN-NoMatch

    Filippo Valsorda <******@****.***> 1684776184 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/crypto/tls/bogo_shim_test.go

    	// are present in the output. They are only checked if -bogo-filter
    	// was not passed.
    	assertResults := map[string]string{
    		"CurveTest-Client-Kyber-TLS13": "PASS",
    		"CurveTest-Server-Kyber-TLS13": "PASS",
    	}
    
    	for name, result := range results.Tests {
    		// This is not really the intended way to do this... but... it works?
    		t.Run(name, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/crypto/tls/key_schedule_test.go

    package tls
    
    import (
    	"bytes"
    	"crypto/internal/mlkem768"
    	"encoding/hex"
    	"hash"
    	"strings"
    	"testing"
    	"unicode"
    )
    
    // This file contains tests derived from draft-ietf-tls-tls13-vectors-07.
    
    func parseVector(v string) []byte {
    	v = strings.Map(func(c rune) rune {
    		if unicode.IsSpace(c) {
    			return -1
    		}
    		return c
    	}, v)
    	parts := strings.Split(v, ":")
    	v = parts[len(parts)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top