| commit | 255aac42743c8b6a0b489b69bb38219d0765200b | [log] [tgz] |
|---|---|---|
| author | James Farrell <[email protected]> | Tue Aug 27 03:51:20 2024 +0000 |
| committer | Automerger Merge Worker <[email protected]> | Tue Aug 27 03:51:20 2024 +0000 |
| tree | db963f9e850367297b01c28c21238b045f4b7caf | |
| parent | 46f0cbad16d4a7fe6d6345598772cb9eee9fd6c4 [diff] | |
| parent | 56987e0eefa7be46a7ed000af48ae68e644d0a31 [diff] |
Migrate 25 crates to monorepo. am: 56987e0eef Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/const-oid/+/3243322 Change-Id: I5e340e47136d51c1a79a0f739b98e925603764f3 Signed-off-by: Automerger Merge Worker <[email protected]>
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.
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
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.
This crate requires Rust 1.57 at a minimum.
We may change the MSRV in the future, but it will be accompanied by a minor version bump.
Licensed under either of:
at your option.
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.