Harness the power of signify(1) to sign arbitrary git objects
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix error msg in pk decode

+1 -1
+1 -1
src/main.rs
··· 202 202 203 203 let (public_key, _) = PublicKey::from_base64(&key_data[..]) 204 204 .map_err(Error::new) 205 - .context("Failed to decode secret key")?; 205 + .context("Failed to decode public key")?; 206 206 207 207 Ok(public_key) 208 208 }