From f70d9e4268ff396e24ef5bd03695018c855c2f74 Mon Sep 17 00:00:00 2001 From: tritoke Date: Wed, 31 Jul 2024 12:49:49 +0100 Subject: [PATCH] Correct the type of AsconXofReader --- ascon-hash/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ascon-hash/src/lib.rs b/ascon-hash/src/lib.rs index 28e88ea4..0733f811 100644 --- a/ascon-hash/src/lib.rs +++ b/ascon-hash/src/lib.rs @@ -417,7 +417,7 @@ pub type AsconAHash = CoreWrapper; /// ``` pub type AsconXof = CoreWrapper; /// Reader for AsconXof output -pub type AsconAXofReader = XofReaderCoreWrapper; +pub type AsconXofReader = XofReaderCoreWrapper; /// AsconAXof /// /// ``` @@ -432,4 +432,4 @@ pub type AsconAXofReader = XofReaderCoreWrapper; /// ``` pub type AsconAXof = CoreWrapper; /// Reader for AsconAXof output -pub type AsconXofReader = XofReaderCoreWrapper; +pub type AsconAXofReader = XofReaderCoreWrapper;