1
0
mirror of https://github.com/fluencelabs/rust-libp2p synced 2025-06-16 11:31:22 +00:00
Files
rust-libp2p/identity/tests/keypair_api.rs

14 lines
263 B
Rust
Raw Normal View History

use libp2p_identity::Keypair;
#[test]
fn calling_keypair_api() {
let _ = Keypair::from_protobuf_encoding(&[]);
}
#[allow(dead_code)]
fn using_keypair(kp: Keypair) {
let _ = kp.to_protobuf_encoding();
let _ = kp.sign(&[]);
let _ = kp.public();
}