03 验证合法性连接的服务端
摘要:
from socket import * import hmac,os secret_key=b'Jedan has a big key!' def conn_auth(conn): ''' 认证客户端链接 :param conn: :return: ''' print('开始验证新链接的合法性') msg=os.urandom(32)#... 阅读全文
posted @ 2019-01-07 21:51 =.=== 阅读(137) 评论(0) 推荐(0) 编辑