summaryrefslogtreecommitdiff
path: root/lib/ext/pre_shared_key.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ext/pre_shared_key.h')
-rw-r--r--lib/ext/pre_shared_key.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/ext/pre_shared_key.h b/lib/ext/pre_shared_key.h
new file mode 100644
index 0000000000..25dd159f6e
--- /dev/null
+++ b/lib/ext/pre_shared_key.h
@@ -0,0 +1,18 @@
+#ifndef EXT_PRE_SHARED_KEY_H
+#define EXT_PRE_SHARED_KEY_H
+
+#include "auth/psk.h"
+#include <hello_ext.h>
+
+extern const hello_ext_entry_st ext_pre_shared_key;
+
+inline static
+unsigned _gnutls_have_psk_credentials(const gnutls_psk_client_credentials_t cred)
+{
+ if (cred->get_function || cred->username.data)
+ return 1;
+ else
+ return 0;
+}
+
+#endif