8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c35b714 commit c01ac6dCopy full SHA for c01ac6d
src/interfaces/libpq/fe-secure.c
@@ -432,6 +432,24 @@ PQsslAttributeNames(PGconn *conn)
432
433
return result;
434
}
435
+
436
+PQsslKeyPassHook_type
437
+PQgetSSLKeyPassHook(void)
438
+{
439
+ return NULL;
440
+}
441
442
+void
443
+PQsetSSLKeyPassHook(PQsslKeyPassHook_type hook)
444
445
+ return;
446
447
448
+int
449
+PQdefaultSSLKeyPassHook(char *buf, int size, PGconn *conn)
450
451
+ return 0;
452
453
#endif /* USE_SSL */
454
455
/* Dummy version of GSSAPI information functions, when built without GSS support */
0 commit comments