This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sdk: Move
Presigner
to signer
module
- Loading branch information
Showing
3 changed files
with
88 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
use { | ||
crate::{ | ||
pubkey::Pubkey, | ||
signature::Signature, | ||
signer::{Signer, SignerError}, | ||
}, | ||
thiserror::Error, | ||
}; | ||
|
||
/// A `Signer` implementation that represents a `Signature` that has been | ||
/// constructed externally. Performs a signature verification against the | ||
/// expected message upon `sign()` requests to affirm its relationship to | ||
/// the `message` bytes | ||
#[derive(Clone, Debug, Default)] | ||
pub struct Presigner { | ||
pubkey: Pubkey, | ||
signature: Signature, | ||
} | ||
|
||
impl Presigner { | ||
pub fn new(pubkey: &Pubkey, signature: &Signature) -> Self { | ||
Self { | ||
pubkey: *pubkey, | ||
signature: *signature, | ||
} | ||
} | ||
} | ||
|
||
#[derive(Debug, Error, PartialEq)] | ||
pub enum PresignerError { | ||
#[error("pre-generated signature cannot verify data")] | ||
VerificationFailure, | ||
} | ||
|
||
impl Signer for Presigner { | ||
fn try_pubkey(&self) -> Result<Pubkey, SignerError> { | ||
Ok(self.pubkey) | ||
} | ||
|
||
fn try_sign_message(&self, message: &[u8]) -> Result<Signature, SignerError> { | ||
if self.signature.verify(self.pubkey.as_ref(), message) { | ||
Ok(self.signature) | ||
} else { | ||
Err(PresignerError::VerificationFailure.into()) | ||
} | ||
} | ||
} | ||
|
||
impl<T> PartialEq<T> for Presigner | ||
where | ||
T: Signer, | ||
{ | ||
fn eq(&self, other: &T) -> bool { | ||
self.pubkey() == other.pubkey() | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
use crate::signer::keypair::keypair_from_seed; | ||
|
||
#[test] | ||
fn test_presigner() { | ||
let keypair = keypair_from_seed(&[0u8; 32]).unwrap(); | ||
let pubkey = keypair.pubkey(); | ||
let data = [1u8]; | ||
let sig = keypair.sign_message(&data); | ||
|
||
// Signer | ||
let presigner = Presigner::new(&pubkey, &sig); | ||
assert_eq!(presigner.try_pubkey().unwrap(), pubkey); | ||
assert_eq!(presigner.pubkey(), pubkey); | ||
assert_eq!(presigner.try_sign_message(&data).unwrap(), sig); | ||
assert_eq!(presigner.sign_message(&data), sig); | ||
let bad_data = [2u8]; | ||
assert!(presigner.try_sign_message(&bad_data).is_err()); | ||
assert_eq!(presigner.sign_message(&bad_data), Signature::default()); | ||
|
||
// PartialEq | ||
assert_eq!(presigner, keypair); | ||
assert_eq!(keypair, presigner); | ||
let presigner2 = Presigner::new(&pubkey, &sig); | ||
assert_eq!(presigner, presigner2); | ||
} | ||
} |