-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathTLSSigAPI.py
More file actions
executable file
·146 lines (121 loc) · 5.09 KB
/
TLSSigAPI.py
File metadata and controls
executable file
·146 lines (121 loc) · 5.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#! /usr/bin/python
# coding:utf-8
import OpenSSL
import base64
import zlib
import json
import time
ecdsa_pri_key = """
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgkTfHxPa8YusG+va8
1CRztNQBOEr90TBEjlQBZ5d1Y0ChRANCAAS9isP/xLib7EZ1vS5OUy+gOsYBwees
PMDvWiTygPAUsGZv1PHLoa0ciqsElkO1fMGwNrzOKJx1Oo194Ri+SypV
-----END PRIVATE KEY-----
"""
ecdsa_pub_key = """
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEvYrD/8S4m+xGdb0uTlMvoDrGAcHn
rDzA71ok8oDwFLBmb9Txy6GtHIqrBJZDtXzBsDa8ziicdTqNfeEYvksqVQ==
-----END PUBLIC KEY-----
"""
def list_all_curves():
list = OpenSSL.crypto.get_elliptic_curves()
for element in list:
print(element)
def get_prime256v1():
print(OpenSSL.crypto.get_elliptic_curve('prime256v1'))
def base64_encode_url(data):
base64_data = base64.b64encode(data)
base64_data_str = bytes.decode(base64_data);
base64_data_str = base64_data_str.replace('+', '*')
base64_data_str = base64_data_str.replace('/', '-')
base64_data_str = base64_data_str.replace('=', '_')
return base64_data_str
def base64_decode_url(base64_data):
base64_data_str = bytes.decode(base64_data);
base64_data_str = base64_data_str.replace('*', '+')
base64_data_str = base64_data_str.replace('-', '/')
base64_data_str = base64_data_str.replace('_', '=')
raw_data = base64.b64decode(base64_data_str)
return raw_data
class TLSSigAPI:
""""""
__acctype = 0
__identifier = ""
__appid3rd = ""
__sdkappid = 0
__version = 20151204
__expire = 3600*24*180
__pri_key = ""
__pub_key = ""
_err_msg = "ok"
def __get_pri_key(self):
return OpenSSL.crypto.load_privatekey(OpenSSL.crypto.FILETYPE_PEM, self.__pri_key);
def __get_pub_key(self):
print(self.__pub_key)
return OpenSSL.crypto.load_publickey(OpenSSL.crypto.FILETYPE_PEM, self.__pub_key);
def __init__(self, sdkappid, pri_key, pub_key):
self.__sdkappid = sdkappid
self.__pri_key = pri_key
self.__pub_key = pub_key
def __create_dict(self):
m = {}
m["TLS.account_type"] = "%d" % self.__acctype
m["TLS.identifier"] = "%s" % self.__identifier
m["TLS.appid_at_3rd"] = "%s" % self.__appid3rd
m["TLS.sdk_appid"] = "%d" % self.__sdkappid
m["TLS.expire_after"] = "%d" % self.__expire
m["TLS.version"] = "%d" % self.__version
m["TLS.time"] = "%d" % time.time()
return m
def __encode_to_fix_str(self, m):
fix_str = "TLS.appid_at_3rd:"+m["TLS.appid_at_3rd"]+"\n" \
+"TLS.account_type:"+m["TLS.account_type"]+"\n" \
+"TLS.identifier:"+m["TLS.identifier"]+"\n" \
+"TLS.sdk_appid:"+m["TLS.sdk_appid"]+"\n" \
+"TLS.time:"+m["TLS.time"]+"\n" \
+"TLS.expire_after:"+m["TLS.expire_after"]+"\n"
return fix_str
def __check_field(self, m):
if m["TLS.identifier"] != self.__identifier:
self._err_msg = "identifier %s in req and identifier %s in tlssig not match" % (self.__identifier, m["TLS.identifier"])
return -1
if atoi(m["TLS.sdk_appid"]) != self.__sdkappid:
self._err_msg = "sdkappid %d in req and identifier %s in tlssig not match" % (self.__identifier, m["TLS.sdk_appid"])
return -2
current_time = time.time()
if atoi(m["TLS.expire_after"])+atoi(m["TLS.time"]) < current_time:
self._err_msg = "tls sig expired expire %s add init time %s lower than current time %d" % (m["TLS.expire_after"], m["TLS.time"], current_time)
return -3,
return atoi(m["TLS.expire_after"]), atoi(m["TLS.time"])
def tls_gen_sig(self, identifier):
self.__identifier = identifier
m = self.__create_dict()
fix_str = self.__encode_to_fix_str(m)
pk_loaded = self.__get_pri_key()
sig_field = OpenSSL.crypto.sign(pk_loaded, fix_str, "sha256");
sig_field_base64 = base64.b64encode(sig_field)
m["TLS.sig"] = bytes.decode(sig_field_base64)
json_str = json.dumps(m)
sig_cmpressed = zlib.compress(json_str.encode())
base64_sig = base64_encode_url(sig_cmpressed)
return base64_sig
def gen_sig(self, identifier, expire=3600*24*180):
self.__expire = expire
return self.tls_gen_sig(identifier)
def tls_verify_sig(self, tlssig, identifier):
self.__identifier = identifier
sig_cmpressed = base64_decode_url(tlssig)
json_str = zlib.decompress(sig_cmpressed)
m = json.loads(json_str)
fix_str = self.__encode_to_fix_str(m)
pubkey_loaded = self.__get_pub_key()
sig_field = base64.b64decode(m["TLS.sig"])
ret = OpenSSL.crypto.verify(pubkey_loaded, sig_field, fix_str, "sha256")
print(ret)
def main():
api = TLSSigAPI(1400000000, ecdsa_pri_key, ecdsa_pub_key)
sig = api.gen_sig("xiaojun")
print(sig)
if __name__ == "__main__":
main()