Skip to content

Commit

Permalink
Add HpkeKeyPair abstraction
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGould committed Sep 26, 2024
1 parent 0811a98 commit 45710f6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 12 deletions.
10 changes: 5 additions & 5 deletions payjoin/src/receive/v2/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use super::{
};
use crate::psbt::PsbtExt;
use crate::receive::optional_parameters::Params;
use crate::v2::{HpkePublicKey, HpkeSecretKey, OhttpEncapsulationError};
use crate::v2::{HpkeKeyPair, HpkePublicKey, OhttpEncapsulationError};
use crate::{OhttpKeys, PjUriBuilder, Request};

pub(crate) mod error;
Expand All @@ -33,7 +33,7 @@ struct SessionContext {
ohttp_keys: OhttpKeys,
expiry: SystemTime,
ohttp_relay: url::Url,
s: (HpkeSecretKey, HpkePublicKey),
s: HpkeKeyPair,
e: Option<HpkePublicKey>,
}

Expand Down Expand Up @@ -85,7 +85,7 @@ impl SessionInitializer {
ohttp_relay,
expiry: SystemTime::now()
+ expire_after.unwrap_or(TWENTY_FOUR_HOURS_DEFAULT_EXPIRY),
s: crate::v2::gen_keypair(),
s: HpkeKeyPair::gen_keypair(),
e: None,
},
}
Expand Down Expand Up @@ -533,7 +533,7 @@ impl PayjoinProposal {
Some(e) => {
let payjoin_bytes = self.inner.payjoin_psbt.serialize();
log::debug!("THERE IS AN e: {:?}", e);
crate::v2::encrypt_message_b_hpke(payjoin_bytes, self.context.s.clone(), e)
crate::v2::encrypt_message_b_hpke(payjoin_bytes, &self.context.s, e)
}
None => Ok(self.extract_v1_req().as_bytes().to_vec()),
}?;
Expand Down Expand Up @@ -603,7 +603,7 @@ mod test {
),
ohttp_relay: url::Url::parse("https://relay.com").unwrap(),
expiry: SystemTime::now() + Duration::from_secs(60),
s: crate::v2::gen_keypair(),
s: HpkeKeyPair::gen_keypair(),
e: None,
},
};
Expand Down
2 changes: 1 addition & 1 deletion payjoin/src/send/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ impl<'a> RequestBuilder<'a> {
sequence,
min_fee_rate: self.min_fee_rate,
#[cfg(feature = "v2")]
e: crate::v2::gen_keypair().0,
e: crate::v2::HpkeKeyPair::gen_keypair().secret_key(),
})
}
}
Expand Down
23 changes: 17 additions & 6 deletions payjoin/src/v2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use hpke::kdf::HkdfSha256;
use hpke::kem::SecpK256HkdfSha256;
use hpke::rand_core::OsRng;
use hpke::{Deserializable, OpModeR, OpModeS, Serializable};
use serde::{Deserialize, Serialize};

pub const PADDED_MESSAGE_BYTES: usize = 7168;
pub const PADDED_PLAINTEXT_A_LENGTH: usize =
Expand All @@ -23,9 +24,20 @@ pub type EncappedKey = <SecpK256HkdfSha256 as hpke::Kem>::EncappedKey;

fn sk_to_pk(sk: &SecretKey) -> PublicKey { <SecpK256HkdfSha256 as hpke::Kem>::sk_to_pk(sk) }

pub(crate) fn gen_keypair() -> (HpkeSecretKey, HpkePublicKey) {
let (sk, pk) = <SecpK256HkdfSha256 as hpke::Kem>::gen_keypair(&mut OsRng);
(HpkeSecretKey(sk), HpkePublicKey(pk))
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
pub struct HpkeKeyPair(pub HpkeSecretKey, pub HpkePublicKey);

impl From<HpkeKeyPair> for (HpkeSecretKey, HpkePublicKey) {
fn from(value: HpkeKeyPair) -> Self { (value.0, value.1) }
}

impl HpkeKeyPair {
pub fn gen_keypair() -> Self {
let (sk, pk) = <SecpK256HkdfSha256 as hpke::Kem>::gen_keypair(&mut OsRng);
Self(HpkeSecretKey(sk), HpkePublicKey(pk))
}
pub fn secret_key(self) -> HpkeSecretKey { self.0 }
pub fn public_key(self) -> HpkePublicKey { self.1 }
}

#[derive(Clone, PartialEq, Eq)]
Expand Down Expand Up @@ -164,13 +176,12 @@ pub fn decrypt_message_a_hpke(
#[cfg(feature = "receive")]
pub fn encrypt_message_b_hpke(
mut plaintext: Vec<u8>,
pj_r_s: (HpkeSecretKey, HpkePublicKey),
pj_r_s: &HpkeKeyPair,
pj_s_pk_re: &HpkePublicKey,
) -> Result<Vec<u8>, HpkeError> {
let pk = sk_to_pk(&pj_r_s.0 .0);
let (encapsulated_key, mut encryption_context) =
hpke::setup_sender::<ChaCha20Poly1305, HkdfSha256, SecpK256HkdfSha256, _>(
&OpModeS::Auth((pj_r_s.0 .0, pk.clone())),
&OpModeS::Auth((pj_r_s.clone().secret_key().0, pj_r_s.clone().public_key().0)),
&pj_s_pk_re.0,
INFO_B,
&mut OsRng,
Expand Down

0 comments on commit 45710f6

Please sign in to comment.