Coder Social home page Coder Social logo

Comments (3)

HsuJv avatar HsuJv commented on May 27, 2024

Will do this ASAP.
BRs.

from ssh-rs.

HsuJv avatar HsuJv commented on May 27, 2024

Hi there,

Pr #73 has already implemented the four algorithms. Please switch to v0.4 to enable 'em,

Note that there are some breaking APIs as the version number is grown up.

BRs

from ssh-rs.

HsuJv avatar HsuJv commented on May 27, 2024

Usage:

ssh-rs/tests/algorithms.rs

Lines 149 to 217 in fc7a520

#[cfg(feature = "deprecated-aes-cbc")]
#[test]
fn test_aes128_cbc() {
let session = ssh::create_session_without_default()
.username(&get_username())
.private_key_path(get_pem_rsa())
.add_kex_algorithms(algorithm::Kex::DiffieHellmanGroup14Sha256)
.add_pubkey_algorithms(algorithm::PubKey::RsaSha2_256)
.add_enc_algorithms(algorithm::Enc::Aes128Cbc)
.add_compress_algorithms(algorithm::Compress::None)
.add_mac_algortihms(algorithm::Mac::HmacSha1)
.connect(get_server())
.unwrap()
.run_local();
session.close();
}
#[cfg(feature = "deprecated-aes-cbc")]
#[test]
fn test_aes192_cbc() {
let session = ssh::create_session_without_default()
.username(&get_username())
.private_key_path(get_pem_rsa())
.add_kex_algorithms(algorithm::Kex::DiffieHellmanGroup14Sha256)
.add_pubkey_algorithms(algorithm::PubKey::RsaSha2_256)
.add_enc_algorithms(algorithm::Enc::Aes192Cbc)
.add_compress_algorithms(algorithm::Compress::None)
.add_mac_algortihms(algorithm::Mac::HmacSha1)
.connect(get_server())
.unwrap()
.run_local();
session.close();
}
#[cfg(feature = "deprecated-aes-cbc")]
#[test]
fn test_aes256_cbc() {
let session = ssh::create_session_without_default()
.username(&get_username())
.private_key_path(get_pem_rsa())
.add_kex_algorithms(algorithm::Kex::DiffieHellmanGroup14Sha256)
.add_pubkey_algorithms(algorithm::PubKey::RsaSha2_256)
.add_enc_algorithms(algorithm::Enc::Aes256Cbc)
.add_compress_algorithms(algorithm::Compress::None)
.add_mac_algortihms(algorithm::Mac::HmacSha1)
.connect(get_server())
.unwrap()
.run_local();
session.close();
}
#[cfg(feature = "deprecated-des-cbc")]
#[test]
fn test_3des_cbc() {
let session = ssh::create_session_without_default()
.username(&get_username())
.private_key_path(get_pem_rsa())
.add_kex_algorithms(algorithm::Kex::DiffieHellmanGroup14Sha256)
.add_pubkey_algorithms(algorithm::PubKey::RsaSha2_256)
.add_enc_algorithms(algorithm::Enc::TripleDesCbc)
.add_compress_algorithms(algorithm::Compress::None)
.add_mac_algortihms(algorithm::Mac::HmacSha1)
.connect(get_server())
.unwrap()
.run_local();
session.close();
}

from ssh-rs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.