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 6f9608c commit 0c4d113Copy full SHA for 0c4d113
contrib/session_generator.py
@@ -0,0 +1,12 @@
1
+#!/usr/bin/env python
2
+# Works with both python2 and python3; please preserve this property
3
+
4
+# Copyright (C) 2016 mod_auth_gssapi contributors - See COPYING for (C) terms
5
6
+# Simple script to generate GssapiSessionKey values
7
8
+import base64
9
+import os
10
11
+bits = base64.b64encode(os.urandom(32))
12
+print("GssapiSessionKey key:" + bits.decode('utf-8'))
0 commit comments