mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-04 04:28:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			233 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			233 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package tlsutil
 | 
						|
 | 
						|
import "crypto/tls"
 | 
						|
 | 
						|
// TLSLookup maps the tls_min_version configuration to the internal value
 | 
						|
var TLSLookup = map[string]uint16{
 | 
						|
	"tls10": tls.VersionTLS10,
 | 
						|
	"tls11": tls.VersionTLS11,
 | 
						|
	"tls12": tls.VersionTLS12,
 | 
						|
}
 |