#iso-iec #oid #iec #iso #itu

no-std const-oid

Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard as defined in ITU X.660, with support for BER/DER encoding/decoding as well as heapless no_std (i.e. embedded) support

32 releases

Uses new Rust 2024

0.10.1 Apr 8, 2025
0.10.0 Feb 24, 2025
0.10.0-rc.3 Nov 3, 2024
0.10.0-rc.0 Jul 26, 2024
0.2.0 Sep 5, 2020

#34 in Encoding

Download history 1548213/week @ 2025-02-01 1704589/week @ 2025-02-08 1502437/week @ 2025-02-15 1616734/week @ 2025-02-22 2231077/week @ 2025-03-01 2129164/week @ 2025-03-08 2047803/week @ 2025-03-15 2334273/week @ 2025-03-22 1683108/week @ 2025-03-29 1775213/week @ 2025-04-05 1523045/week @ 2025-04-12 1494588/week @ 2025-04-19 1389029/week @ 2025-04-26 1496298/week @ 2025-05-03 1523225/week @ 2025-05-10 1579922/week @ 2025-05-17

6,249,055 downloads per month
Used in 6,435 crates (56 directly)

Apache-2.0 OR MIT

330KB
6.5K SLoC

RustCrypto: Object Identifiers (OIDs)

crate Docs Build Status Apache2/MIT licensed Rust Version Project Chat

Const-friendly implementation of the ISO/IEC Object Identifier (OID) standard as defined in ITU X.660, with support for BER/DER encoding/decoding as well as heapless no_std (i.e. embedded) environments.

Documentation

About OIDs

Object Identifiers, a.k.a. OIDs, are an International Telecommunications Union (ITU) and ISO/IEC standard for naming any object, concept, or "thing" with a globally unambiguous persistent name.

The ITU's X.660 standard provides the OID specification. Every OID is part of a hierarchical namespace which begins with a root OID, which is either the ITU's root OID (0), the ISO's root OID (1), or the joint ISO/ITU root OID (2).

The following is an example of an OID, in this case identifying the rsaEncryption algorithm:

1.2.840.113549.1.1.1

For more information, see: https://en.wikipedia.org/wiki/Object_identifier

Implementation

This library supports parsing OIDs in const contexts, e.g.:

use const_oid::ObjectIdentifier;

pub const MY_OID: ObjectIdentifier = ObjectIdentifier::new_unwrap("1.2.840.113549.1.1.1");

The OID parser is implemented entirely in terms of const fn and without the use of proc macros.

Additionally, it also includes a const fn OID serializer, and stores the OIDs parsed from const contexts encoded using the BER/DER serialization (sans header).

This allows ObjectIdentifier to impl AsRef<[u8]> which can be used to obtain the BER/DER serialization of an OID, even one declared const.

Additionally, it impls FromStr and TryFrom<&[u8]> and functions just as well as a runtime OID library.

License

Licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies