aboutsummaryrefslogtreecommitdiffstats
path: root/moon-abe/cpabe-0.11/cpabe-setup.py
diff options
context:
space:
mode:
authorWuKong <rebirthmonkey@gmail.com>2015-09-04 09:25:34 +0200
committerWuKong <rebirthmonkey@gmail.com>2015-09-04 09:25:34 +0200
commit3baeb11a8fbcfcdbc31976d421f17b85503b3ecd (patch)
tree04891d88c1127148f1b390b5a24414e85b270aee /moon-abe/cpabe-0.11/cpabe-setup.py
parent67c5b73910f5fc437429c356978081b252a59480 (diff)
init attribute-based encryption
Change-Id: Iba1a3d722110abf747a0fba366f3ebc911d25b25
Diffstat (limited to 'moon-abe/cpabe-0.11/cpabe-setup.py')
-rw-r--r--moon-abe/cpabe-0.11/cpabe-setup.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/moon-abe/cpabe-0.11/cpabe-setup.py b/moon-abe/cpabe-0.11/cpabe-setup.py
new file mode 100644
index 00000000..a1d82c9f
--- /dev/null
+++ b/moon-abe/cpabe-0.11/cpabe-setup.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+import os.path
+import sys
+from subprocess import call
+
+c_prog = "cpabe-setup"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ call([c_prog])
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ call(["./" + c_prog])
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")