Schnorr sigs, initial commit

This commit is contained in:
Brian Lawrence
2024-09-27 21:01:01 -07:00
commit 2a6db2a980
4 changed files with 726 additions and 0 deletions

122
src/main.rs Normal file
View File

@@ -0,0 +1,122 @@
use plonky2::hash::poseidon::PoseidonHash;
use plonky2::field::goldilocks_field::GoldilocksField;
use plonky2::field::types::Field;
use plonky2::plonk::config::Hasher;
use plonky2::field::types::PrimeField64;
use rand;
use rand::Rng;
const BIG_GROUP_GEN: GoldilocksField = GoldilocksField(14293326489335486720);
struct SchnorrSigner {
PRIME_GROUP_GEN: GoldilocksField,
PRIME_GROUP_ORDER: u64,
}
struct SchnorrSecretKey {
sk: u64,
}
struct SchnorrPublicKey {
pk: GoldilocksField,
}
struct SchnorrSignature {
s: u64,
e: u64,
}
impl SchnorrSigner{
fn new() -> Self {
let quotient_order: u64 = (1 << 48) - (1 << 32);
let PRIME_GROUP_GEN: GoldilocksField = Self::pow(BIG_GROUP_GEN, quotient_order);
let PRIME_GROUP_ORDER: u64 = (1 << 32) + 1;
SchnorrSigner{PRIME_GROUP_GEN, PRIME_GROUP_ORDER}
}
fn pow(x: GoldilocksField, a: u64) -> GoldilocksField {
let mut a_copy = a;
let mut res = GoldilocksField(1);
let mut x_pow_2n = x.clone();
while (a_copy > 0) {
if (a_copy % 2 != 0) {
res *= x_pow_2n;
}
a_copy /= 2;
x_pow_2n *= x_pow_2n;
}
res
}
fn keygen(&self, sk: SchnorrSecretKey) -> SchnorrPublicKey {
let pk: GoldilocksField = Self::pow(self.PRIME_GROUP_GEN, sk.sk);
SchnorrPublicKey{pk: pk}
}
fn hash_insecure(&self, r: &GoldilocksField, msg: &Vec<GoldilocksField>) -> u64 {
let poseidon_input: Vec<GoldilocksField> = std::iter::once(r)
.chain(msg.iter())
.copied()
.collect();
println!("Running hash on concatenated elts: {:?}", poseidon_input);
let h = PoseidonHash::hash_no_pad(&poseidon_input);
h.elements[0].to_canonical_u64() % self.PRIME_GROUP_ORDER
}
fn rand_group_multiplier(&self, rng: &mut rand::rngs::ThreadRng) -> u64 {
let group_order: u64 = (1 << 16) + 1;
rng.gen_range(0..group_order)
}
fn sign(&self, msg: &Vec<GoldilocksField>, sk: SchnorrSecretKey, rng: &mut rand::rngs::ThreadRng) -> SchnorrSignature {
let k: u64 = self.rand_group_multiplier(rng);
let r: GoldilocksField = Self::pow(self.PRIME_GROUP_GEN, k);
let e: u64 = self.hash_insecure(&r, msg);
assert!(k < self.PRIME_GROUP_ORDER);
assert!(sk < self.PRIME_GROUP_ORDER);
assert!(e < self.PRIME_GROUP_ORDER);
let mut s128: u128 = ((k as u128) + (sk.sk as u128) * (e as u128));
s128 %= (self.PRIME_GROUP_ORDER as u128);
let s: u64 = s128 as u64;
SchnorrSignature{e, s}
}
fn verify(&self, sig: SchnorrSignature, msg: &Vec<GoldilocksField>, pk: SchnorrPublicKey) -> bool {
let r: GoldilocksField = Self::pow(self.PRIME_GROUP_GEN, sig.s)
* Self::pow(pk.pk, sig.e);
let e_v: u64 = self.hash_insecure(&r, msg);
e_v == sig.e
}
}
fn main() {
println!("Hello, world!");
let mut rng: rand::rngs::ThreadRng = rand::thread_rng();
type F = GoldilocksField;
let x = F::from_noncanonical_i64(3);
let h = PoseidonHash::hash_no_pad(&[x]);
println!("Hash is {:?}", h);
}
#[cfg(test)]
mod tests {
use plonky2::field::goldilocks_field::GoldilocksField;
use crate::SchnorrSigner;
#[test]
fn test_pow() {
let g = GoldilocksField(3);
let res = GoldilocksField(16305451354880172407);
assert_eq!(res, SchnorrSigner::pow(g, 1234567));
}
#[test]
fn test_sig() {
println!("NOT IMPLEMENTED");
}
}