168 lines
4.9 KiB
Rust
Raw Normal View History

2025-08-18 18:18:16 -03:00
use risc0_zkvm::serde::to_vec;
2025-08-18 07:39:41 -03:00
use serde::{Deserialize, Serialize};
2025-08-18 14:28:26 -03:00
#[cfg(feature = "host")]
use crate::error::NssaCoreError;
2025-08-18 18:18:16 -03:00
2025-08-18 07:39:41 -03:00
use crate::{
account::{
Account, AccountWithMetadata, Commitment, Nonce, Nullifier, NullifierPublicKey,
NullifierSecretKey,
},
program::{ProgramId, ProgramOutput},
};
2025-08-18 14:28:26 -03:00
#[cfg(feature = "host")]
use std::io::Cursor;
2025-08-06 20:05:04 -03:00
pub mod account;
pub mod program;
2025-08-18 07:39:41 -03:00
2025-08-18 14:28:26 -03:00
#[cfg(feature = "host")]
pub mod error;
2025-08-18 07:39:41 -03:00
pub type CommitmentSetDigest = [u32; 8];
pub type MembershipProof = Vec<[u8; 32]>;
pub fn verify_membership_proof(
commitment: &Commitment,
proof: &MembershipProof,
digest: &CommitmentSetDigest,
) -> bool {
2025-08-19 12:52:52 -03:00
// TODO: implement
true
2025-08-18 07:39:41 -03:00
}
pub type IncomingViewingPublicKey = [u8; 32];
pub type EphemeralSecretKey = [u8; 32];
pub struct EphemeralPublicKey;
impl From<&EphemeralSecretKey> for EphemeralPublicKey {
fn from(value: &EphemeralSecretKey) -> Self {
todo!()
}
}
pub struct Tag(u8);
impl Tag {
pub fn new(Npk: &NullifierPublicKey, Ipk: &IncomingViewingPublicKey) -> Self {
todo!()
}
}
#[derive(Serialize, Deserialize)]
#[cfg_attr(any(feature = "host", test), derive(Debug, Clone, PartialEq, Eq))]
pub struct EncryptedAccountData(u8);
2025-08-18 07:39:41 -03:00
impl EncryptedAccountData {
pub fn new(
account: &Account,
esk: &EphemeralSecretKey,
Npk: &NullifierPublicKey,
Ivk: &IncomingViewingPublicKey,
) -> Self {
// TODO: implement
Self(0)
2025-08-18 07:39:41 -03:00
}
2025-08-18 14:28:26 -03:00
#[cfg(feature = "host")]
pub fn from_cursor(cursor: &mut Cursor<&[u8]>) -> Result<Self, NssaCoreError> {
let dummy_value = EncryptedAccountData(0);
Ok(dummy_value)
2025-08-18 14:28:26 -03:00
}
}
impl EncryptedAccountData {
pub fn to_bytes(&self) -> Vec<u8> {
// TODO: implement
vec![0]
}
2025-08-18 07:39:41 -03:00
}
#[derive(Serialize, Deserialize)]
pub struct PrivacyPreservingCircuitInput {
pub program_output: ProgramOutput,
pub visibility_mask: Vec<u8>,
2025-08-18 18:18:16 -03:00
pub private_account_nonces: Vec<Nonce>,
pub private_account_keys: Vec<(
2025-08-18 07:39:41 -03:00
NullifierPublicKey,
IncomingViewingPublicKey,
EphemeralSecretKey,
)>,
pub private_account_auth: Vec<(NullifierSecretKey, MembershipProof)>,
pub program_id: ProgramId,
pub commitment_set_digest: CommitmentSetDigest,
}
#[derive(Serialize, Deserialize)]
2025-08-19 12:52:52 -03:00
#[cfg_attr(any(feature = "host", test), derive(Debug, PartialEq, Eq))]
2025-08-18 07:39:41 -03:00
pub struct PrivacyPreservingCircuitOutput {
pub public_pre_states: Vec<AccountWithMetadata>,
pub public_post_states: Vec<Account>,
pub encrypted_private_post_states: Vec<EncryptedAccountData>,
pub new_commitments: Vec<Commitment>,
pub new_nullifiers: Vec<Nullifier>,
pub commitment_set_digest: CommitmentSetDigest,
}
#[cfg(feature = "host")]
impl PrivacyPreservingCircuitOutput {
pub fn to_bytes(&self) -> Vec<u8> {
2025-08-19 15:22:35 -03:00
bytemuck::cast_slice(&to_vec(&self).unwrap()).to_vec()
}
}
2025-08-19 12:52:52 -03:00
#[cfg(test)]
mod tests {
use risc0_zkvm::serde::from_slice;
use crate::{
EncryptedAccountData, PrivacyPreservingCircuitOutput,
account::{Account, AccountWithMetadata, Commitment, Nullifier, NullifierPublicKey},
};
#[test]
fn test_privacy_preserving_circuit_output_to_bytes_is_compatible_with_from_slice() {
let output = PrivacyPreservingCircuitOutput {
public_pre_states: vec![
AccountWithMetadata {
account: Account {
program_owner: [1, 2, 3, 4, 5, 6, 7, 8],
balance: 12345678901234567890,
data: b"test data".to_vec(),
nonce: 18446744073709551614,
},
is_authorized: true,
},
AccountWithMetadata {
account: Account {
program_owner: [9, 9, 9, 8, 8, 8, 7, 7],
balance: 123123123456456567112,
data: b"test data".to_vec(),
nonce: 9999999999999999999999,
},
is_authorized: false,
},
],
public_post_states: vec![Account {
program_owner: [1, 2, 3, 4, 5, 6, 7, 8],
balance: 100,
data: b"post state data".to_vec(),
nonce: 18446744073709551615,
}],
encrypted_private_post_states: vec![EncryptedAccountData(0)],
new_commitments: vec![Commitment::new(
&NullifierPublicKey::from(&[1; 32]),
&Account::default(),
)],
new_nullifiers: vec![Nullifier::new(
&Commitment::new(&NullifierPublicKey::from(&[2; 32]), &Account::default()),
&[1; 32],
)],
commitment_set_digest: [0, 1, 0, 1, 0, 1, 0, 1],
};
let bytes = output.to_bytes();
let output_from_slice: PrivacyPreservingCircuitOutput = from_slice(&bytes).unwrap();
assert_eq!(output, output_from_slice);
}
}