c2pa-rs

A fork of https://github.com/contentauth/c2pa-rs/
git clone git://archive.git.mtrnord.blog/mtrnords-photography-manager/c2pa-rs.git
Log | Files | Refs | README

mod.rs (742B)


      1 // This Source Code Form is subject to the terms of the Mozilla Public
      2 // License, v. 2.0. If a copy of the MPL was not distributed with this
      3 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
      4 
      5 /*! Holds Rust struct definitions for various ASN.1 primitives. */
      6 
      7 // This code is copied from a subset of version 0.22.0 of the
      8 // cryptographic-message-syntax crate located at:
      9 // https://github.com/indygreg/cryptography-rs/tree/main/cryptographic-message-syntax/src/asn1
     10 
     11 // We can not incorporate the entire crate directly because other parts of the
     12 // crate contain dependencies on blocking calls in reqwest. Those calls are not
     13 // available in WASM environment.
     14 
     15 pub mod rfc3161;
     16 pub mod rfc3281;
     17 pub mod rfc4210;
     18 pub mod rfc5652;