54 releases (breaking)

new 0.46.0 Jan 14, 2025
0.45.0 Aug 9, 2024
0.44.0 Nov 5, 2023
0.43.0 Jun 20, 2023
0.4.0 Mar 29, 2019

#564 in Cryptography

Download history 67886/week @ 2024-09-24 72935/week @ 2024-10-01 65306/week @ 2024-10-08 69867/week @ 2024-10-15 67869/week @ 2024-10-22 59903/week @ 2024-10-29 71156/week @ 2024-11-05 60056/week @ 2024-11-12 65597/week @ 2024-11-19 66967/week @ 2024-11-26 73772/week @ 2024-12-03 80542/week @ 2024-12-10 65371/week @ 2024-12-17 29119/week @ 2024-12-24 40848/week @ 2024-12-31 55093/week @ 2025-01-07

203,238 downloads per month
Used in 287 crates (18 directly)

MIT license

365KB
7K SLoC

Noise protocol framework support for libp2p.

Note: This crate is still experimental and subject to major breaking changes both on the API and the wire protocol.

This crate provides libp2p_core::InboundUpgrade and libp2p_core::OutboundUpgrade implementations for various noise handshake patterns (currently IK, IX, and XX) over a particular choice of Diffie–Hellman key agreement (currently only X25519).

Note: Only the XX handshake pattern is currently guaranteed to provide interoperability with other libp2p implementations.

All upgrades produce as output a pair, consisting of the remote's static public key and a NoiseOutput which represents the established cryptographic session with the remote, implementing futures::io::AsyncRead and futures::io::AsyncWrite.

Usage

Example:

use libp2p_core::{Transport, upgrade, transport::MemoryTransport};
use libp2p_noise as noise;
use libp2p_identity as identity;

let id_keys = identity::Keypair::generate_ed25519();
let noise = noise::Config::new(&id_keys).unwrap();
let builder = MemoryTransport::default().upgrade(upgrade::Version::V1).authenticate(noise);
// let transport = builder.multiplex(...);

Dependencies

~8–18MB
~244K SLoC