aboutsummaryrefslogtreecommitdiffstats
path: root/moon-abe/python
diff options
context:
space:
mode:
Diffstat (limited to 'moon-abe/python')
-rw-r--r--moon-abe/python/cpabe-attrList.py18
-rw-r--r--moon-abe/python/cpabe-dec.py18
-rw-r--r--moon-abe/python/cpabe-enc.py18
-rw-r--r--moon-abe/python/cpabe-keygen.py18
-rw-r--r--moon-abe/python/cpabe-policyList.py18
-rw-r--r--moon-abe/python/cpabe-setup.py17
-rw-r--r--moon-abe/python/peks-ind.py18
-rw-r--r--moon-abe/python/peks-test.py18
-rw-r--r--moon-abe/python/peks-trap.py18
9 files changed, 161 insertions, 0 deletions
diff --git a/moon-abe/python/cpabe-attrList.py b/moon-abe/python/cpabe-attrList.py
new file mode 100644
index 00000000..4cc98c28
--- /dev/null
+++ b/moon-abe/python/cpabe-attrList.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "cpabe-attrList"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/cpabe-dec.py b/moon-abe/python/cpabe-dec.py
new file mode 100644
index 00000000..3e120578
--- /dev/null
+++ b/moon-abe/python/cpabe-dec.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "cpabe-dec"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/cpabe-enc.py b/moon-abe/python/cpabe-enc.py
new file mode 100644
index 00000000..cff9a6f6
--- /dev/null
+++ b/moon-abe/python/cpabe-enc.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "cpabe-enc"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/cpabe-keygen.py b/moon-abe/python/cpabe-keygen.py
new file mode 100644
index 00000000..21e1306b
--- /dev/null
+++ b/moon-abe/python/cpabe-keygen.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "cpabe-keygen"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/cpabe-policyList.py b/moon-abe/python/cpabe-policyList.py
new file mode 100644
index 00000000..3b33c653
--- /dev/null
+++ b/moon-abe/python/cpabe-policyList.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "cpabe-policyList"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/cpabe-setup.py b/moon-abe/python/cpabe-setup.py
new file mode 100644
index 00000000..a1d82c9f
--- /dev/null
+++ b/moon-abe/python/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")
diff --git a/moon-abe/python/peks-ind.py b/moon-abe/python/peks-ind.py
new file mode 100644
index 00000000..ca7c5ad5
--- /dev/null
+++ b/moon-abe/python/peks-ind.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "peks-ind"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/peks-test.py b/moon-abe/python/peks-test.py
new file mode 100644
index 00000000..a1d607aa
--- /dev/null
+++ b/moon-abe/python/peks-test.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "peks-test"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")
diff --git a/moon-abe/python/peks-trap.py b/moon-abe/python/peks-trap.py
new file mode 100644
index 00000000..02e88cee
--- /dev/null
+++ b/moon-abe/python/peks-trap.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+import os, sys
+from subprocess import call
+
+c_prog = "peks-trap"
+c_file = "/usr/local/bin/" + c_prog
+
+if(os.path.isfile(c_file)):
+ args = [c_prog] + sys.argv[1::]
+ call(args)
+
+elif(os.path.isfile("./" + c_prog)):
+ print "Warning: missing file %s using binary in local repository" % c_file
+ args = ["./" + c_prog] + sys.argv[1::]
+ call(args)
+
+else:
+ sys.exit(c_prog + " was not found. Be sure that the C library cpabe is installed before running this program")