NLnetLabs / rpki-rs

An RPKI library for Rust
BSD 3-Clause "New" or "Revised" License
40 stars 22 forks source link

Allow converting Serial to and from a byte array. #285

Closed partim closed 7 months ago

partim commented 7 months ago

This PR adds functions and trait implementations to convert Serial to and from a [u8; 20].

Because serials are unsigned, the left-most bit must not be set which means conversion from an array can fail.