pub struct P2pCertificate<'a> { /* private fields */ }
👎Deprecated: This crate has been renamed from ‘iroh-net’ to ‘iroh’, please use the new crate
Expand description
An X.509 certificate with a libp2p-specific extension is used to secure libp2p connections.
Implementations§
Source§impl P2pCertificate<'_>
impl P2pCertificate<'_>
Sourcepub fn peer_id(&self) -> PublicKey
👎Deprecated: This crate has been renamed from ‘iroh-net’ to ‘iroh’, please use the new crate
pub fn peer_id(&self) -> PublicKey
The PublicKey
of the remote peer.
Sourcepub fn verify_signature(
&self,
signature_scheme: SignatureScheme,
message: &[u8],
signature: &[u8],
) -> Result<(), VerificationError>
👎Deprecated: This crate has been renamed from ‘iroh-net’ to ‘iroh’, please use the new crate
pub fn verify_signature( &self, signature_scheme: SignatureScheme, message: &[u8], signature: &[u8], ) -> Result<(), VerificationError>
Verify the signature
of the message
signed by the secret key corresponding to the public key stored
in the certificate.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for P2pCertificate<'a>
impl<'a> RefUnwindSafe for P2pCertificate<'a>
impl<'a> Send for P2pCertificate<'a>
impl<'a> Sync for P2pCertificate<'a>
impl<'a> Unpin for P2pCertificate<'a>
impl<'a> UnwindSafe for P2pCertificate<'a>
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more