lib.rs 483 B

123456789101112131415161718
  1. //! Copyright (c) 2016-2018, The Tor Project, Inc. */
  2. //! See LICENSE for licensing information */
  3. //! Interface for external calls to tor C ABI
  4. //!
  5. //! The purpose of this module is to provide a clean interface for when Rust
  6. //! modules need to interact with functionality in tor C code rather than each
  7. //! module implementing this functionality repeatedly.
  8. extern crate libc;
  9. extern crate smartlist;
  10. pub mod crypto_digest;
  11. mod crypto_rand;
  12. mod external;
  13. pub use external::*;