summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Redfern <tim@adaptics.co>2014-07-23 15:47:32 +0100
committerTim Redfern <tim@adaptics.co>2014-07-23 15:47:32 +0100
commit7dd56d3e250dc14f9dbba5e72000a621c88e7f78 (patch)
tree72e93270ef181be73e6045d47a251b401e4a60eb
initial commitHEADmaster
-rw-r--r--DropBEMKey1
-rwxr-xr-xmakekey13
2 files changed, 14 insertions, 0 deletions
diff --git a/DropBEMKey b/DropBEMKey
new file mode 100644
index 0000000..c14ea09
--- /dev/null
+++ b/DropBEMKey
@@ -0,0 +1 @@
+0xA5, 0x31, 0x1F, 0x47, 0x1F, 0x4D, 0x11, 0xF4, 0x4E, 0xEC, 0x1F, 0xAE, 0x83, 0x2C, 0xAD, 0x42 \ No newline at end of file
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