├── .appveyor.yml ├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Cargo.toml ├── LICENSE ├── Makefile ├── NEWS.md ├── README.md ├── ci ├── after_success.sh ├── install.sh └── script.sh └── src ├── imp ├── commoncrypto.rs ├── cryptoapi.rs └── openssl.rs ├── lib.rs └── test.rs /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: malept 2 | tidelift: cargo/crypto-hash 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.bk 2 | target 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/Makefile -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/README.md -------------------------------------------------------------------------------- /ci/after_success.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/ci/after_success.sh -------------------------------------------------------------------------------- /ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/ci/install.sh -------------------------------------------------------------------------------- /ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/ci/script.sh -------------------------------------------------------------------------------- /src/imp/commoncrypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/src/imp/commoncrypto.rs -------------------------------------------------------------------------------- /src/imp/cryptoapi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/src/imp/cryptoapi.rs -------------------------------------------------------------------------------- /src/imp/openssl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/src/imp/openssl.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malept/crypto-hash/HEAD/src/test.rs --------------------------------------------------------------------------------