Skip to content

Commit 795bf32

Browse files
committed
Remove cipher option
1 parent 00f3831 commit 795bf32

File tree

1 file changed

+2
-7
lines changed
  • crates/hdfs-native/src/security

1 file changed

+2
-7
lines changed

crates/hdfs-native/src/security/sasl.rs

+2-7
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ use {
3232
crate::proto::{
3333
common::TokenProto,
3434
hdfs::{
35-
data_transfer_encryptor_message_proto::DataTransferEncryptorStatus, CipherOptionProto,
36-
CipherSuiteProto, DataTransferEncryptorMessageProto, DatanodeIdProto,
37-
HandshakeSecretProto,
35+
data_transfer_encryptor_message_proto::DataTransferEncryptorStatus,
36+
DataTransferEncryptorMessageProto, DatanodeIdProto, HandshakeSecretProto,
3837
},
3938
},
4039
tokio::io::{AsyncBufReadExt, BufStream},
@@ -613,10 +612,6 @@ impl SaslDatanodeConnection {
613612
let message = DataTransferEncryptorMessageProto {
614613
status: DataTransferEncryptorStatus::Success as i32,
615614
payload: Some(payload),
616-
cipher_option: vec![CipherOptionProto {
617-
suite: CipherSuiteProto::AesCtrNopadding as i32,
618-
..Default::default()
619-
}],
620615
..Default::default()
621616
};
622617

0 commit comments

Comments
 (0)