diff options
author | Isis Lovecruft <isis@torproject.org> | 2018-04-21 01:01:04 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2018-05-08 21:03:37 +0000 |
commit | af182d4ab51d6a1a70559bbdcd4ab842aa855684 (patch) | |
tree | a39ec19013bdb85e4ad9aef1dd001747446923f2 /src/rust/include.am | |
parent | 3df37d7b6be4f7d6ece0cd12812595d5f91ea72f (diff) | |
download | tor-af182d4ab51d6a1a70559bbdcd4ab842aa855684.tar.gz tor-af182d4ab51d6a1a70559bbdcd4ab842aa855684.zip |
rust: Add crypto crate and implement Rust wrappers for SHA2 code.
* FIXES #24659: https://bugs.torproject.org/24659
Diffstat (limited to 'src/rust/include.am')
-rw-r--r-- | src/rust/include.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rust/include.am b/src/rust/include.am index 3edc87e1e2..ba652bda0c 100644 --- a/src/rust/include.am +++ b/src/rust/include.am @@ -4,7 +4,12 @@ EXTRA_DIST +=\ src/rust/Cargo.toml \ src/rust/Cargo.lock \ src/rust/.cargo/config.in \ + src/rust/crypto/Cargo.toml \ + src/rust/crypto/lib.rs \ + src/rust/crypto/digests/mod.rs \ + src/rust/crypto/digests/sha2.rs \ src/rust/external/Cargo.toml \ + src/rust/external/crypto_digest.rs \ src/rust/external/crypto_rand.rs \ src/rust/external/external.rs \ src/rust/external/lib.rs \ |