进栈检票
进栈检票
[Zeroize](https://github.com/RustCrypto/utils/tree/master/zeroize) while dropping prevents accidental leakage of keccak state, which helps improve security when used in sensitive cases such as stream ciphers. Most of RustCrypto's cryptography projects have optional zeroize...
Some contexts implement separate XOF structs and provide `IntoXof` to convert to XOF structs, while others implement both `Hasher` and `Xof` traits directly. can the latter absorb and squeeze at...
We have `HeaderValue::from_maybe_shared` to create `HeaderValue` from `Bytes` without copying, so what about the reverse?
There is already a feature for this and we can prefer the "native" way.
How many bytes to read and how many bytes are actually left.
It is possible to include a place for RNG state in the appropriate place and accept any `rand_core::RngCore + rand_core::CryptoRng` when creating protocol state. But the amount of work to...
It's fairly simple and you can reference to [bytestring impl](https://docs.rs/bytestring/1.3.0/src/bytestring/lib.rs.html#253-291).
The current method of manually defining `{crate-name}-crate` and then specifying `package = {crate-name}` is rather redundant in comparison.
This would raise MSRV to 1.70. Found an issue mentioned MSRV, but did not find a clear MSRV policy. btw Found the `once_cell` dependency in `async-std` as well.
This would create unnecessary FFI and have to call C compiler when Rust version compiles. Rust nowadays have no problem calling the instruction set manually and inlining asm, but I'm...