summaryrefslogtreecommitdiff
path: root/makekey
diff options
context:
space:
mode:
Diffstat (limited to 'makekey')
-rwxr-xr-xmakekey13
1 files changed, 13 insertions, 0 deletions
diff --git a/makekey b/makekey
new file mode 100755
index 0000000..d591e53
--- /dev/null
+++ b/makekey
@@ -0,0 +1,13 @@
+#!/usr/bin/python
+
+import random
+
+
+string=""
+for num in range(1,17):
+ string=string+"0x%02X" % random.randint(0,255)
+ if num<16:
+ string=string+", "
+
+
+print string