mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Uses dalek-ff-group for Ed25519 and Ristretto. Uses minimal-ed448 for Ed448. Adds ciphersuite-kp256 for Secp256k1 and P-256.
143 lines
3.8 KiB
Rust
143 lines
3.8 KiB
Rust
use std::{sync::Arc, io, collections::HashMap, fmt::Debug};
|
|
|
|
use blake2::{Digest, Blake2s256};
|
|
|
|
use dalek_ff_group::Ristretto;
|
|
use ciphersuite::{
|
|
group::{ff::Field, Group},
|
|
Ciphersuite,
|
|
};
|
|
use schnorr::SchnorrSignature;
|
|
|
|
use serai_db::MemDb;
|
|
use tendermint::ext::Commit;
|
|
|
|
use crate::{
|
|
ReadWrite, BlockError, Block, Transaction,
|
|
tests::p2p::DummyP2p,
|
|
transaction::{TransactionError, Signed, TransactionKind, Transaction as TransactionTrait},
|
|
tendermint::{TendermintNetwork, Validators},
|
|
};
|
|
|
|
type N = TendermintNetwork<MemDb, NonceTransaction, DummyP2p>;
|
|
|
|
// A transaction solely defined by its nonce and a distinguisher (to allow creating distinct TXs
|
|
// sharing a nonce).
|
|
#[derive(Clone, PartialEq, Eq, Debug)]
|
|
struct NonceTransaction(u32, u8, Signed);
|
|
|
|
impl NonceTransaction {
|
|
fn new(nonce: u32, distinguisher: u8) -> Self {
|
|
NonceTransaction(
|
|
nonce,
|
|
distinguisher,
|
|
Signed {
|
|
signer: <Ristretto as Ciphersuite>::G::identity(),
|
|
nonce,
|
|
signature: SchnorrSignature::<Ristretto> {
|
|
R: <Ristretto as Ciphersuite>::G::identity(),
|
|
s: <Ristretto as Ciphersuite>::F::ZERO,
|
|
},
|
|
},
|
|
)
|
|
}
|
|
}
|
|
|
|
impl ReadWrite for NonceTransaction {
|
|
fn read<R: io::Read>(reader: &mut R) -> io::Result<Self> {
|
|
let mut nonce = [0; 4];
|
|
reader.read_exact(&mut nonce)?;
|
|
let nonce = u32::from_le_bytes(nonce);
|
|
|
|
let mut distinguisher = [0];
|
|
reader.read_exact(&mut distinguisher)?;
|
|
|
|
Ok(NonceTransaction::new(nonce, distinguisher[0]))
|
|
}
|
|
|
|
fn write<W: io::Write>(&self, writer: &mut W) -> io::Result<()> {
|
|
writer.write_all(&self.0.to_le_bytes())?;
|
|
writer.write_all(&[self.1])
|
|
}
|
|
}
|
|
|
|
impl TransactionTrait for NonceTransaction {
|
|
fn kind(&self) -> TransactionKind<'_> {
|
|
TransactionKind::Signed(vec![], &self.2)
|
|
}
|
|
|
|
fn hash(&self) -> [u8; 32] {
|
|
Blake2s256::digest([self.0.to_le_bytes().as_ref(), &[self.1]].concat()).into()
|
|
}
|
|
|
|
fn verify(&self) -> Result<(), TransactionError> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
#[test]
|
|
fn empty_block() {
|
|
const GENESIS: [u8; 32] = [0xff; 32];
|
|
const LAST: [u8; 32] = [0x01; 32];
|
|
let validators = Arc::new(Validators::new(GENESIS, vec![]).unwrap());
|
|
let commit = |_: u64| -> Option<Commit<Arc<Validators>>> {
|
|
Some(Commit::<Arc<Validators>> { end_time: 0, validators: vec![], signature: vec![] })
|
|
};
|
|
let provided_or_unsigned_in_chain = |_: [u8; 32]| false;
|
|
Block::<NonceTransaction>::new(LAST, vec![], vec![])
|
|
.verify::<N, _>(
|
|
GENESIS,
|
|
LAST,
|
|
HashMap::new(),
|
|
&mut |_, _| None,
|
|
&validators,
|
|
commit,
|
|
provided_or_unsigned_in_chain,
|
|
false,
|
|
)
|
|
.unwrap();
|
|
}
|
|
|
|
#[test]
|
|
fn duplicate_nonces() {
|
|
const GENESIS: [u8; 32] = [0xff; 32];
|
|
const LAST: [u8; 32] = [0x01; 32];
|
|
|
|
let validators = Arc::new(Validators::new(GENESIS, vec![]).unwrap());
|
|
|
|
// Run once without duplicating a nonce, and once with, so that's confirmed to be the faulty
|
|
// component
|
|
for i in [1, 0] {
|
|
let mut mempool = vec![];
|
|
let mut insert = |tx: NonceTransaction| mempool.push(Transaction::Application(tx));
|
|
insert(NonceTransaction::new(0, 0));
|
|
insert(NonceTransaction::new(i, 1));
|
|
|
|
let commit = |_: u64| -> Option<Commit<Arc<Validators>>> {
|
|
Some(Commit::<Arc<Validators>> { end_time: 0, validators: vec![], signature: vec![] })
|
|
};
|
|
let provided_or_unsigned_in_chain = |_: [u8; 32]| false;
|
|
|
|
let mut last_nonce = 0;
|
|
let res = Block::new(LAST, vec![], mempool).verify::<N, _>(
|
|
GENESIS,
|
|
LAST,
|
|
HashMap::new(),
|
|
&mut |_, _| {
|
|
let res = last_nonce;
|
|
last_nonce += 1;
|
|
Some(res)
|
|
},
|
|
&validators,
|
|
commit,
|
|
provided_or_unsigned_in_chain,
|
|
false,
|
|
);
|
|
if i == 1 {
|
|
res.unwrap();
|
|
} else {
|
|
assert_eq!(res, Err(BlockError::TransactionError(TransactionError::InvalidNonce)));
|
|
}
|
|
}
|
|
}
|