mirror of
				https://github.com/linuxkit/linuxkit.git
				synced 2025-10-31 11:00:04 +00:00 
			
		
		
		
	Replace riddler with code that constructs config.json directly
Generated largely from the specified config; small parts taken from `docker image inspect`, such as the command line. Renamed some of the yaml keys to match the OCI spec rather than Docker Compose as we decided they are more readable, no more underscores. Add some extra functionality - tmpfs specification - fully general mount specification - no new privileges can be specified now For nostalgic reasons, using engine-api to talk to the docker cli as we only need an old API version, and it is nice and easy to vendor... Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
		
							
								
								
									
										17
									
								
								vendor/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								vendor/github.com/docker/go-connections/tlsconfig/config_client_ciphers.go
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| // +build go1.5 | ||||
|  | ||||
| // Package tlsconfig provides primitives to retrieve secure-enough TLS configurations for both clients and servers. | ||||
| // | ||||
| package tlsconfig | ||||
|  | ||||
| import ( | ||||
| 	"crypto/tls" | ||||
| ) | ||||
|  | ||||
| // Client TLS cipher suites (dropping CBC ciphers for client preferred suite set) | ||||
| var clientCipherSuites = []uint16{ | ||||
| 	tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, | ||||
| 	tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, | ||||
| 	tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, | ||||
| 	tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, | ||||
| } | ||||
		Reference in New Issue
	
	Block a user