Skip to content

Commit

Permalink
Correct the type of AsconXofReader (#610)
Browse files Browse the repository at this point in the history
Currently AsconXofReader has type
XofReaderCoreWrapper<AsconAXofReaderCore>, this is incorrect the type
should be XofReaderCoreWrapper<AsconXofReaderCore>.
  • Loading branch information
tritoke authored Jul 31, 2024
1 parent 4e6dd6b commit 6be8466
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ascon-hash/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ pub type AsconAHash = CoreWrapper<AsconACore>;
/// ```
pub type AsconXof = CoreWrapper<AsconXofCore>;
/// Reader for AsconXof output
pub type AsconAXofReader = XofReaderCoreWrapper<AsconAXofReaderCore>;
pub type AsconXofReader = XofReaderCoreWrapper<AsconXofReaderCore>;
/// AsconAXof
///
/// ```
Expand All @@ -432,4 +432,4 @@ pub type AsconAXofReader = XofReaderCoreWrapper<AsconAXofReaderCore>;
/// ```
pub type AsconAXof = CoreWrapper<AsconAXofCore>;
/// Reader for AsconAXof output
pub type AsconXofReader = XofReaderCoreWrapper<AsconAXofReaderCore>;
pub type AsconAXofReader = XofReaderCoreWrapper<AsconAXofReaderCore>;

0 comments on commit 6be8466

Please sign in to comment.