From: Ian Jackson Date: Sun, 30 May 2021 23:46:23 +0000 (+0100) Subject: sshkeys: Make KeySpec fields pub (!) X-Git-Tag: otter-0.7.0~178 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=d6d5a9341456a11b90d3b4a22cff80f898221a5d;p=otter.git sshkeys: Make KeySpec fields pub (!) Signed-off-by: Ian Jackson --- diff --git a/src/sshkeys.rs b/src/sshkeys.rs index 35780caf..53924564 100644 --- a/src/sshkeys.rs +++ b/src/sshkeys.rs @@ -68,8 +68,8 @@ pub struct ScopeKey { #[derive(Debug,Clone,Serialize,Deserialize)] pub struct KeySpec { - id: sshkeys::Id, - nonce: sshkeys::Nonce, + pub id: sshkeys::Id, + pub nonce: sshkeys::Nonce, } mod veneer {