ssl_windows.go 286 B

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