networking 0.1.9

secure RSA + AES network implementations in a peer to peer enabled manner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use networking::test_config;
#[test]
fn use_strings() {
    let (peer, config) = test_config();
    let key = config.host_data().privkeycomp();
    println!("{}", key.n().to_string_unstable());
}
#[test]
fn optimized_mod_exp() {
    let (_, config) = test_config();
    let key = config.host_data().privkeycomp();
}