我正在尝试用Python语言学习网络编程。为此,我用python创建了一个简单的聊天程序。现在我想加密服务器和客户端之间的通信。我怎样才能做到这一点?以下代码是我的服务器代码:
TcpSocket.bind(("0.0.0.0",8000))
TcpSocket.listen(2)
print("I'm waiting for a connection...!")
(client, (ip, port)) = TcpSocket.accept()
print("Connection recived from the {}".format(ip))
messageToClient = "You connected to the server sucessfuly.\n"
client.send(messageToClient.encode('ascii'))
dataRecived = "Message!"
while True:
dataRecived = client.recv(1024)
print("Client :", dataRecived)
print("Server :")
dataSend = raw_input()
client.send(str(dataSend) + "\n")
print("Connection has been closed.")
client.close()
print("Server has been shutdowned.")
TcpSocket.close()
def main():
try:
print("Server has started.")
connectionOrianted()
except :
print("Maybe connection terminated.")
finally:
print("Session has closed.")
if __name__ == "__main__": main()
以下代码是我的客户代码。
#!/usr/bin/python3
import socket
import sys
from builtins import input
def main():
try:
serverHostNumber = input("Please enter the ip address of the server: \n")
serverPortNumber = input("Please enter the port of the server: \n")
# create a socket object
TcpSocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# connection to hostname on the port.
TcpSocket.connect((serverHostNumber, int(serverPortNumber)))
while True:
data = TcpSocket.recv(1024)
print("Server : ", data)
sendData = input("Client : ")
if sendData == "exit":
TcpSocket.close()
sys.exit()
TcpSocket.send(sendData.encode(encoding='ascii', errors='strict'))
except Exception as e:
print("The error: ", e)
TcpSocket.close()
sys.exit()
if __name__ == "__main__" : main()