From d59ffe274ac8141e3f4f93bb440529f2533189f6 Mon Sep 17 00:00:00 2001 From: Bobbin Threadbare Date: Sun, 28 Jan 2024 20:50:52 -0800 Subject: [PATCH] feat: add Debug and Clone derives for Falcon signature --- src/dsa/rpo_falcon512/signature.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dsa/rpo_falcon512/signature.rs b/src/dsa/rpo_falcon512/signature.rs index b76db6b..3994e0e 100644 --- a/src/dsa/rpo_falcon512/signature.rs +++ b/src/dsa/rpo_falcon512/signature.rs @@ -41,6 +41,7 @@ use core::cell::OnceCell; /// 3. 625 bytes encoding the `s2` polynomial above. /// /// The total size of the signature (including the extended public key) is 1563 bytes. +#[derive(Debug, Clone)] pub struct Signature { pub(super) pk: PublicKeyBytes, pub(super) sig: SignatureBytes,