Skip to content

Commit 4bad0ff

Browse files
pureblackpureblack
pureblack
authored and
pureblack
committed
update
1 parent cc32999 commit 4bad0ff

File tree

6 files changed

+48
-66
lines changed

6 files changed

+48
-66
lines changed

Cargo.lock

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
rust-crypto = "0.2"
9+
rust-crypto = "^0.2"
1010
gtk = "0.9"
1111
ring = "0.16"
12+
glib-sys = "0.10.1"

src/chat/client.rs

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
11
use std::net::UdpSocket;
2-
const PROJECT_NAME: &str = "BLANE";
3-
const AUTHOR_NAME: &str = "PURE BLACK";
2+
43
pub struct Client {
54
socket: UdpSocket,
65
server_address: String,
7-
pub fn receive_message(&self) -> Result<String, String> {
8-
let mut buffer = [0u8; 1024];
9-
match self.socket.recv_from(&mut buffer) {
10-
Ok((bytes_read, _)) => {
11-
let message = String::from_utf8_lossy(&buffer[..bytes_read]).to_string();
12-
Ok(message)
13-
}
14-
Err(e) => Err(format!("Failed to receive message: {}", e)),
15-
}
16-
}
176
}
187

198
impl Client {
@@ -44,5 +33,16 @@ impl Client {
4433
Ok(())
4534
}
4635

36+
pub fn receive_message(&self) -> Result<String, String> {
37+
let mut buffer = [0u8; 1024];
38+
match self.socket.recv_from(&mut buffer) {
39+
Ok((bytes_read, _)) => {
40+
let message = String::from_utf8_lossy(&buffer[..bytes_read]).to_string();
41+
Ok(message)
42+
}
43+
Err(e) => Err(format!("Failed to receive message: {}", e)),
44+
}
45+
}
46+
4747
// Other methods
4848
}

src/chat/server.rs

+15-20
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,9 @@
11
use std::net::{SocketAddr, UdpSocket};
22
use std::collections::HashMap;
3-
const PROJECT_NAME: &str = "BLANE";
4-
const AUTHOR_NAME: &str = "PURE BLACK";
3+
54
pub struct Server {
65
socket: UdpSocket,
76
clients: HashMap<SocketAddr, String>,
8-
pub fn handle_new_connection(&mut self, client_addr: SocketAddr, client_name: String) {
9-
self.clients.insert(client_addr, client_name);
10-
println!("New client connected: {}", client_name);
11-
}
12-
13-
pub fn handle_client_disconnection(&mut self, client_addr: SocketAddr) {
14-
if let Some(client_name) = self.clients.remove(&client_addr) {
15-
println!("Client disconnected: {}", client_name);
16-
}
17-
}
18-
19-
pub fn get_online_clients(&self) -> Vec<String> {
20-
self.clients.values().cloned().collect()
21-
}
227
}
238

249
impl Server {
@@ -41,7 +26,6 @@ impl Server {
4126
let message = String::from_utf8_lossy(&buffer[..bytes_read]);
4227
println!("Received message from {}: {}", src_addr, message);
4328

44-
// Broadcast the message to all clients
4529
self.broadcast_message(&message)?;
4630
}
4731
Err(e) => {
@@ -50,11 +34,24 @@ impl Server {
5034
}
5135
}
5236
}
37+
}
38+
}
5339

54-
// Other server logic (e.g., handle new connections, manage clients)
40+
pub fn handle_new_connection(&mut self, client_addr: SocketAddr, client_name: &str) {
41+
self.clients.insert(client_addr, client_name.to_string());
42+
println!("New client connected: {}", client_name);
43+
}
44+
45+
pub fn handle_client_disconnection(&mut self, client_addr: SocketAddr) {
46+
if let Some(client_name) = self.clients.remove(&client_addr) {
47+
println!("Client disconnected: {}", client_name);
5548
}
5649
}
5750

51+
pub fn get_online_clients(&self) -> Vec<String> {
52+
self.clients.values().cloned().collect()
53+
}
54+
5855
pub fn broadcast_message(&self, message: &str) -> Result<(), String> {
5956
for client_addr in self.clients.keys() {
6057
self.socket
@@ -64,6 +61,4 @@ impl Server {
6461

6562
Ok(())
6663
}
67-
68-
// Other methods
6964
}

src/encryption.rs

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
extern crate crypto;
2-
2+
extern crate ring;
33
use crypto::rsa::{RsaPrivateKey, RsaPublicKey};
44
use crypto::symmetriccipher::SymmetricCipherError;
55
use crypto::buffer::{ReadBuffer, WriteBuffer, BufferResult};
66
use crypto::aes::{cbc_decryptor, cbc_encryptor, KeySize};
77
use crypto::blockmodes::NoPadding;
8+
use std::io::Write;
89

9-
// RSA 加密
1010
fn rsa_encrypt(public_key: &RsaPublicKey, plaintext: &[u8]) -> Result<Vec<u8>, SymmetricCipherError> {
1111
let mut ciphertext = vec![0; public_key.size()];
1212

@@ -28,7 +28,6 @@ fn rsa_encrypt(public_key: &RsaPublicKey, plaintext: &[u8]) -> Result<Vec<u8>, S
2828
}
2929
}
3030

31-
// RSA 解密
3231
fn rsa_decrypt(private_key: &RsaPrivateKey, ciphertext: &[u8]) -> Result<Vec<u8>, SymmetricCipherError> {
3332
let mut plaintext = vec![0; private_key.size()];
3433

@@ -51,17 +50,16 @@ fn rsa_decrypt(private_key: &RsaPrivateKey, ciphertext: &[u8]) -> Result<Vec<u8>
5150
}
5251

5352
fn main() {
54-
// 生成 RSA 密钥对
5553
let (private_key, public_key) = RsaPrivateKey::new(512).keypair();
5654

5755
let message = b"Hello, world!";
58-
println!("Original message: {:?}", message);
56+
println!("Original message: {:?}", std::str::from_utf8(message).unwrap());
5957

60-
// 使用公钥加密消息
6158
let encrypted_message = rsa_encrypt(&public_key, message).unwrap();
6259
println!("Encrypted message: {:?}", encrypted_message);
6360

64-
// 使用私钥解密消息
6561
let decrypted_message = rsa_decrypt(&private_key, &encrypted_message).unwrap();
66-
println!("Decrypted message: {:?}", decrypted_message);
62+
println!("Decrypted message: {:?}", std::str::from_utf8(&decrypted_message).unwrap());
63+
64+
std::io::stdout().flush().unwrap();
6765
}

src/main.rs

+12-25
Original file line numberDiff line numberDiff line change
@@ -1,55 +1,42 @@
1-
// Project: BLANE
2-
// Author: PURE BLACK
3-
const PROJECT_NAME: &str = "BLANE";
4-
const AUTHOR_NAME: &str = "PURE BLACK";
5-
6-
7-
mod chat;
8-
mod encryption;
9-
10-
use std::io::{self, Write};
11-
use std::thread;
1+
use std::io::Write;
2+
mod chat {
3+
pub mod client;
4+
pub mod server;
5+
}
126

13-
use chat::{Client, Server};
7+
use chat::client::Client;
8+
use chat::server::Server;
149

1510
fn main() {
16-
// 获取服务器地址和客户端名称
1711
let server_address = "127.0.0.1:14514";
18-
let client_name = "Alice";
12+
let _client_name = "Black";
1913

20-
// 创建客户端实例并连接到服务器
2114
let client = Client::new(server_address).expect("Failed to create client");
2215
client.connect().expect("Failed to connect to server");
2316

24-
// 创建服务器实例并启动服务器
2517
let server = Server::new(server_address).expect("Failed to create server");
26-
let server_handle = thread::spawn(move || {
18+
let _server_handle = std::thread::spawn(move || {
2719
server.start().expect("Failed to start server");
2820
});
2921

30-
// 在主线程中处理客户端输入和接收消息
3122
println!("Connected to server. You can start sending messages.");
23+
println!("您以上线,请畅所欲言!");
3224

3325
loop {
3426
print!("> ");
35-
io::stdout().flush().unwrap();
27+
std::io::stdout().flush().unwrap();
3628

3729
let mut input = String::new();
38-
io::stdin().read_line(&mut input).unwrap();
30+
std::io::stdin().read_line(&mut input).unwrap();
3931
let message = input.trim();
4032

4133
if message.is_empty() {
4234
continue;
4335
}
4436

45-
// 发送消息给服务器
4637
client.send_message(message).expect("Failed to send message");
4738

48-
// 接收服务器广播的消息
4939
let received_message = client.receive_message().expect("Failed to receive message");
5040
println!("Received message: {}", received_message);
5141
}
52-
53-
// 等待服务器线程结束
54-
server_handle.join().expect("Server thread panicked");
5542
}

0 commit comments

Comments
 (0)