61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
|
import os
|
||
|
import shlex
|
||
|
import subprocess
|
||
|
import json
|
||
|
import urllib2
|
||
|
|
||
|
#change this file name etc., temporary change to get it working for the meantime
|
||
|
'''
|
||
|
|
||
|
All functions in this file have been re-implemenented by Thomas Smith
|
||
|
|
||
|
'''
|
||
|
def param():
|
||
|
jsondict = json.load(urllib2.urlopen('http://localhost:8080/param'))
|
||
|
return json.dumps(jsondict)
|
||
|
|
||
|
def combpk(amount, pks):
|
||
|
url = 'http://localhost:8080/cmpkstring'
|
||
|
querystring = '?number='+str(amount)
|
||
|
for pk in pks:
|
||
|
querystring += '&PK='+pk
|
||
|
|
||
|
print(url+querystring)
|
||
|
jsondict = json.load(urllib2.urlopen(url+querystring))
|
||
|
print(json.dumps(jsondict))
|
||
|
return json.dumps(jsondict)
|
||
|
|
||
|
def addec(amount, ciphers):
|
||
|
url = 'http://localhost:8080/addec'
|
||
|
querystring = '?number='+str(amount)
|
||
|
c1s = ciphers['c1s']
|
||
|
c2s = ciphers['c2s']
|
||
|
for i, value in enumerate(c1s):
|
||
|
querystring += "&C1="+str(c1s[i])
|
||
|
querystring += "&C2="+str(c2s[i])
|
||
|
|
||
|
print(url+querystring)
|
||
|
jsondict = json.load(urllib2.urlopen(url+querystring))
|
||
|
print(json.dumps(jsondict))
|
||
|
return json.dumps(jsondict)
|
||
|
|
||
|
def tally(amount, param, decs, cipher):
|
||
|
url = 'http://localhost:8080/tally'
|
||
|
querystring = '?number='+str(amount)
|
||
|
querystring += '¶m='+urllib2.quote(str(param))
|
||
|
|
||
|
testquerystring = '?number='+str(amount)
|
||
|
testquerystring += '¶m='+str(param)
|
||
|
|
||
|
for i, value in enumerate(decs):
|
||
|
querystring += "&decs="+str(value)
|
||
|
testquerystring += "&decs="+str(value)
|
||
|
|
||
|
querystring += '&cipher=' + urllib2.quote(str(cipher))
|
||
|
testquerystring += '&cipher=' + str(cipher)
|
||
|
|
||
|
print(url+querystring)
|
||
|
print(url+testquerystring)
|
||
|
jsondict = json.load(urllib2.urlopen(url+querystring))
|
||
|
print('tally: ' + str(jsondict['M']))
|
||
|
return str(jsondict['M'])
|