crypto-hash icon indicating copy to clipboard operation
crypto-hash copied to clipboard

A Rust wrapper for OS-level cryptographic hash functions

Results 11 crypto-hash issues
Sort by recently updated
recently updated
newest added

Hello, any idea of when a new minor version can be released? On the recent commits there's a version bump for packages, like hex. I need to reduce binary size...

Hey, Is it possible to introduce a fallback to openssl when it is building agains macOS 10.7 or anything before 10.8? Right now it can't be linked agains such old...

* This avoids needing to allocate a vector for every hash on Windows and Linux. The CommonCrypto API will work but still allocates a vector. * The buffer must match...

To help build more portable executables, it would be nice to have an option to build against a vendored openssl version. At the moment, I have to do the following...

enhancement
help wanted

This library uses e.g. [`CryptAcquireContextW`](https://docs.microsoft.com/en-us/windows/desktop/api/wincrypt/nf-wincrypt-cryptacquirecontextw). As noted on the linked page, this is part of the deprecated API CryptoAPI. This is a proposal to migrate from CryptoAPI to [CNG](https://docs.microsoft.com/nl-nl/windows/desktop/SecCNG/cng-portal).

enhancement
help wanted

Hiya @malept If I would have potentially a security issue would the preference to be to raise privately or raise public issue ? Also would you be okay for people...

`windows-sys` is the official microsoft api bindings and so should be preferred over `winapi`.

See https://github.com/malept/crypto-hash/issues/25 for more details about the bug. Add `CryptDestroyHash` and `CryptCreateHash ` in the `Hasher.finish()` implementation for Windows.