選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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 }