Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SSLv3 (0.05 sec)

  1. src/crypto/tls/common.go

    	"slices"
    	"strings"
    	"sync"
    	"time"
    	_ "unsafe" // for linkname
    )
    
    const (
    	VersionTLS10 = 0x0301
    	VersionTLS11 = 0x0302
    	VersionTLS12 = 0x0303
    	VersionTLS13 = 0x0304
    
    	// Deprecated: SSLv3 is cryptographically broken, and is no longer
    	// supported by this package. See golang.org/issue/32716.
    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top