TUN-801: Rapid SQL Proxy

This commit is contained in:
rishabh-bector
2018-07-30 16:45:15 -05:00
committed by Areg Harutyunyan
parent aa5e551de6
commit 60ca06d020
55 changed files with 10332 additions and 149 deletions

20
vendor/github.com/lib/pq/ssl_permissions.go generated vendored Normal file
View File

@@ -0,0 +1,20 @@
// +build !windows
package pq
import "os"
// sslKeyPermissions checks the permissions on user-supplied ssl key files.
// The key file should have very little access.
//
// libpq does not check key file permissions on Windows.
func sslKeyPermissions(sslkey string) error {
info, err := os.Stat(sslkey)
if err != nil {
return err
}
if info.Mode().Perm()&0077 != 0 {
return ErrSSLKeyHasWorldPermissions
}
return nil
}