Move lib to the root.
[libradsec.git] / examples / client-psk.conf
diff --git a/examples/client-psk.conf b/examples/client-psk.conf
new file mode 100644 (file)
index 0000000..7b35e23
--- /dev/null
@@ -0,0 +1,18 @@
+# We keep PSK configurations in a separate config file until
+# --enable-tls-psk is on by default. This configuration is not valid
+# without PSK support.
+
+realm blocking-tls-psk {
+    type = "TLS"
+    timeout = 1
+    retries = 3
+    #pskstr = "sikrit psk"
+    pskhexstr = "deadbeef4711"
+    pskid = "Client_identity"
+    pskex = "PSK"
+    server {
+        hostname = "srv1"
+       service = "4433"
+       secret = "sikrit"
+    }
+}