Changes to be committed:
modified: src/client.rs
This commit is contained in:
parent
9f429449f5
commit
ceac4a33e9
@ -139,6 +139,7 @@ pub async fn client_mode(client_config: ClientConfiguration) {
|
|||||||
if s_cipher.is_some() {
|
if s_cipher.is_some() {
|
||||||
let aes = Aes256Gcm::new(s_cipher.as_ref().unwrap().as_bytes().into());
|
let aes = Aes256Gcm::new(s_cipher.as_ref().unwrap().as_bytes().into());
|
||||||
let nonce = Nonce::clone_from_slice(&wrapped_packet.nonce);
|
let nonce = Nonce::clone_from_slice(&wrapped_packet.nonce);
|
||||||
|
info!("Key: {:?} / nonce: {:?}", s_cipher.as_ref().unwrap().as_bytes(), &nonce);
|
||||||
match aes.decrypt(&nonce, &wrapped_packet.data[..]) {
|
match aes.decrypt(&nonce, &wrapped_packet.data[..]) {
|
||||||
Ok(decrypted) => { tx.send(decrypted); },
|
Ok(decrypted) => { tx.send(decrypted); },
|
||||||
Err(error) => error!("Decryption error! {:?}", error)
|
Err(error) => error!("Decryption error! {:?}", error)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user