2022-07-10 01:51:39 +00:00
|
|
|
use std::slice;
|
|
|
|
|
2022-04-22 01:36:18 +00:00
|
|
|
use lazy_static::lazy_static;
|
|
|
|
use rand_core::{RngCore, CryptoRng};
|
|
|
|
|
2022-07-10 01:51:39 +00:00
|
|
|
use subtle::ConstantTimeEq;
|
|
|
|
|
2022-04-22 01:36:18 +00:00
|
|
|
use tiny_keccak::{Hasher, Keccak};
|
|
|
|
|
|
|
|
use curve25519_dalek::{
|
2022-07-24 12:57:33 +00:00
|
|
|
constants::{ED25519_BASEPOINT_POINT, ED25519_BASEPOINT_TABLE},
|
2022-04-22 01:36:18 +00:00
|
|
|
scalar::Scalar,
|
2022-07-15 05:26:07 +00:00
|
|
|
edwards::{EdwardsPoint, EdwardsBasepointTable, CompressedEdwardsY},
|
2022-04-22 01:36:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#[cfg(feature = "multisig")]
|
|
|
|
pub mod frost;
|
|
|
|
|
2022-05-21 19:33:35 +00:00
|
|
|
mod serialize;
|
|
|
|
|
2022-05-22 06:24:24 +00:00
|
|
|
pub mod ringct;
|
2022-04-22 01:36:18 +00:00
|
|
|
|
2022-04-28 07:31:09 +00:00
|
|
|
pub mod transaction;
|
2022-05-22 01:35:25 +00:00
|
|
|
pub mod block;
|
2022-04-28 07:31:09 +00:00
|
|
|
|
2022-05-22 01:35:25 +00:00
|
|
|
pub mod rpc;
|
|
|
|
pub mod wallet;
|
2022-05-21 19:33:35 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests;
|
2022-04-22 01:36:18 +00:00
|
|
|
|
|
|
|
lazy_static! {
|
2022-07-24 12:57:33 +00:00
|
|
|
static ref H: EdwardsPoint =
|
|
|
|
CompressedEdwardsY(hash(&ED25519_BASEPOINT_POINT.compress().to_bytes()))
|
|
|
|
.decompress()
|
2022-07-15 05:26:07 +00:00
|
|
|
.unwrap()
|
2022-07-24 12:57:33 +00:00
|
|
|
.mul_by_cofactor();
|
2022-07-22 06:34:36 +00:00
|
|
|
static ref H_TABLE: EdwardsBasepointTable = EdwardsBasepointTable::create(&H);
|
2022-04-22 01:36:18 +00:00
|
|
|
}
|
|
|
|
|
2022-07-10 01:51:39 +00:00
|
|
|
// Function from libsodium our subsection of Monero relies on. Implementing it here means we don't
|
|
|
|
// need to link against libsodium
|
|
|
|
#[no_mangle]
|
|
|
|
unsafe extern "C" fn crypto_verify_32(a: *const u8, b: *const u8) -> isize {
|
2022-07-15 05:26:07 +00:00
|
|
|
isize::from(slice::from_raw_parts(a, 32).ct_eq(slice::from_raw_parts(b, 32)).unwrap_u8()) - 1
|
2022-07-10 01:51:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Offer a wide reduction to C. Our seeded RNG prevented Monero from defining an unbiased scalar
|
|
|
|
// generation function, and in order to not use Monero code (which would require propagating its
|
|
|
|
// license), the function was rewritten. It was rewritten with wide reduction, instead of rejection
|
|
|
|
// sampling however, hence the need for this function
|
|
|
|
#[no_mangle]
|
|
|
|
unsafe extern "C" fn monero_wide_reduce(value: *mut u8) {
|
2022-07-15 05:26:07 +00:00
|
|
|
let res =
|
|
|
|
Scalar::from_bytes_mod_order_wide(std::slice::from_raw_parts(value, 64).try_into().unwrap());
|
2022-07-10 01:51:39 +00:00
|
|
|
for (i, b) in res.to_bytes().iter().enumerate() {
|
|
|
|
value.add(i).write(*b);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-28 07:31:09 +00:00
|
|
|
#[allow(non_snake_case)]
|
|
|
|
#[derive(Copy, Clone, PartialEq, Eq, Debug)]
|
|
|
|
pub struct Commitment {
|
|
|
|
pub mask: Scalar,
|
2022-07-15 05:26:07 +00:00
|
|
|
pub amount: u64,
|
2022-04-22 01:36:18 +00:00
|
|
|
}
|
|
|
|
|
2022-04-28 07:31:09 +00:00
|
|
|
impl Commitment {
|
|
|
|
pub fn zero() -> Commitment {
|
2022-07-15 05:26:07 +00:00
|
|
|
Commitment { mask: Scalar::one(), amount: 0 }
|
2022-04-28 07:31:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn new(mask: Scalar, amount: u64) -> Commitment {
|
|
|
|
Commitment { mask, amount }
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn calculate(&self) -> EdwardsPoint {
|
|
|
|
(&self.mask * &ED25519_BASEPOINT_TABLE) + (&Scalar::from(self.amount) * &*H_TABLE)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-03 12:49:46 +00:00
|
|
|
// Allows using a modern rand as dalek's is notoriously dated
|
|
|
|
pub fn random_scalar<R: RngCore + CryptoRng>(rng: &mut R) -> Scalar {
|
|
|
|
let mut r = [0; 64];
|
|
|
|
rng.fill_bytes(&mut r);
|
|
|
|
Scalar::from_bytes_mod_order_wide(&r)
|
|
|
|
}
|
|
|
|
|
2022-04-28 07:31:09 +00:00
|
|
|
pub fn hash(data: &[u8]) -> [u8; 32] {
|
2022-04-22 01:36:18 +00:00
|
|
|
let mut keccak = Keccak::v256();
|
|
|
|
keccak.update(data);
|
|
|
|
let mut res = [0; 32];
|
|
|
|
keccak.finalize(&mut res);
|
2022-04-28 07:31:09 +00:00
|
|
|
res
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn hash_to_scalar(data: &[u8]) -> Scalar {
|
2022-07-22 06:34:36 +00:00
|
|
|
Scalar::from_bytes_mod_order(hash(data))
|
2022-04-22 01:36:18 +00:00
|
|
|
}
|