rpki 0.19.3

A library for validating and creating RPKI data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Types for AS and IP adress resources.
//!
//! This module cotains the basic types for representing resources protected
//! by RPKI: [`Asn`] for autonomous system numbers, [`Prefix`] for IP address
//! prefixes, and [`MaxLenPrefix`] for prefixes with a prefix length range.

pub use self::addr::{MaxLenPrefix, Prefix};
pub use self::asn::{Asn, SmallAsnSet};

pub mod addr;
pub mod asn;