From fb3a93c42033a7c96eeada8b358ee3d65eea2ef8 Mon Sep 17 00:00:00 2001 From: Jeff Burdges Date: Wed, 1 May 2024 06:01:11 +0200 Subject: [PATCH] Add aead.rs from Fiono11-simplpedpop This is not the correct way to do this, but let's stick with it for the moment. --- src/aead.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aead.rs b/src/aead.rs index d47cf6f..6484028 100644 --- a/src/aead.rs +++ b/src/aead.rs @@ -41,7 +41,7 @@ use crate::context::SigningTranscript; use crate::cert::AdaptorCertPublic; -fn make_aead(mut t: T) -> AEAD +pub(crate) fn make_aead(mut t: T) -> AEAD where T: SigningTranscript, AEAD: KeyInit,