You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ssl_windows.go 267B

123456789
  1. // +build windows
  2. package pq
  3. // sslKeyPermissions checks the permissions on user-supplied ssl key files.
  4. // The key file should have very little access.
  5. //
  6. // libpq does not check key file permissions on Windows.
  7. func sslKeyPermissions(string) error { return nil }