RustCrypto / hashes

Collection of cryptographic hash functions written in pure Rust
1.89k stars 256 forks source link

Correct the type of AsconXofReader #610

Closed tritoke closed 3 months ago

tritoke commented 4 months ago

Currently AsconXofReader has type XofReaderCoreWrapper, this is incorrect the type should be XofReaderCoreWrapper.

tritoke commented 4 months ago

This can be used as a workaround in the meantime for downstreams.

type AsconXofReader = XofReaderCoreWrapper<AsconXofReaderCore>;