#asn-1 #parser #identifier #object #formatting #building #x500

no-std oid

Rust-native library for building, parsing, and formating Object Identifiers (OIDs)

4 releases

0.2.1 Sep 19, 2020
0.2.0 Sep 3, 2020
0.1.1 Oct 25, 2019
0.1.0 Jul 24, 2019

#245 in Cryptography

Download history 5432/week @ 2023-12-16 2707/week @ 2023-12-23 5422/week @ 2023-12-30 8559/week @ 2024-01-06 9421/week @ 2024-01-13 13342/week @ 2024-01-20 11831/week @ 2024-01-27 12719/week @ 2024-02-03 9663/week @ 2024-02-10 7669/week @ 2024-02-17 8983/week @ 2024-02-24 7060/week @ 2024-03-02 8950/week @ 2024-03-09 7694/week @ 2024-03-16 6927/week @ 2024-03-23 6025/week @ 2024-03-30

30,778 downloads per month
Used in 40 crates (12 directly)

MIT/Apache

36KB
706 lines

Object Identifier Library for Rust

All Contributors

Build Status Crate codecov API Minimum rustc version Average time to resolve an issue Percentage of issues still open

Object Identifiers are a standard of the ITU used to reference objects, things, and concepts in a globally unique way. This crate provides for data structures and methods to build, parse, and format OIDs.

Basic Utilization

Running Example

You can run the example code from examples/basic.rs using cargo:

cargo run --example basic

Parsing OID String Representation

use oid::prelude::*;
let oid = ObjectIdentifier::try_from("0.1.2.3")?;

Parsing OID Binary Representation

use oid::prelude::*;
let oid = ObjectIdentifier::try_from(vec![0x00, 0x01, 0x02, 0x03])?;

Encoding OID as String Representation

use oid::prelude::*;
let oid = ObjectIdentifier::try_from("0.1.2.3")?;
let oid: String = oid.into();
assert_eq!(oid, "0.1.2.3");

Encoding OID as Binary Representation

use oid::prelude::*;
let oid = ObjectIdentifier::try_from(vec![0x00, 0x01, 0x02, 0x03])?;
let oid: Vec<u8> = oid.into();
assert_eq!(oid, "0.1.2.3");

Adding as a dependency with cargo-edit

cargo add oid

Adding as a dependency with cargo-edit for a !#[no_std] crate

cargo add oid --no-default-features

Adding as a dependency directly to Cargo.toml

[dependencies]
oid = "0.1.0"

Adding as a dependency directly to Cargo.toml for a !#[no_std] crate

[dependencies]
oid = { default-features = false }

Building

The build routines have been automated with cargo-make. If you're not using cargo-make, you can check Makefile.toml for the relevant manual build procedures.

Building for a platform with Rust Standard Library

cargo make

Building for an embedded platform or #![no_std]

cargo make build_no_std

Fuzzing Inputs

Profiles for cargo-fuzz are included for fuzzing the inputs on public method parameters.

Fuzz Binary OID Parsing

cargo make fuzz_parse_binary

Fuzz String OID Parsing

cargo make fuzz_parse_string

Contributors ✨

Thanks goes to these wonderful people (emoji key):

Sean Bruton
Sean Bruton

⚠️ 💻
Benoît C.
Benoît C.

⚠️ 💻
snake66
snake66

⚠️ 💻

This project follows the all-contributors specification. Contributions of any kind welcome!

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option. Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this library by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~180KB