mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
* Rename the coins folder to networks Ethereum isn't a coin. It's a network. Resolves #357. * More renames of coins -> networks in orchestration * Correct paths in tests/ * cargo fmt
60 lines
1.4 KiB
Rust
60 lines
1.4 KiB
Rust
use core::ops::{Index, IndexMut};
|
|
use std_shims::vec::Vec;
|
|
|
|
use zeroize::Zeroize;
|
|
|
|
use curve25519_dalek::edwards::EdwardsPoint;
|
|
|
|
use crate::scalar_vector::ScalarVector;
|
|
|
|
#[cfg(test)]
|
|
use crate::core::multiexp;
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Zeroize)]
|
|
pub(crate) struct PointVector(pub(crate) Vec<EdwardsPoint>);
|
|
|
|
impl Index<usize> for PointVector {
|
|
type Output = EdwardsPoint;
|
|
fn index(&self, index: usize) -> &EdwardsPoint {
|
|
&self.0[index]
|
|
}
|
|
}
|
|
|
|
impl IndexMut<usize> for PointVector {
|
|
fn index_mut(&mut self, index: usize) -> &mut EdwardsPoint {
|
|
&mut self.0[index]
|
|
}
|
|
}
|
|
|
|
impl PointVector {
|
|
pub(crate) fn mul_vec(&self, vector: &ScalarVector) -> Self {
|
|
assert_eq!(self.len(), vector.len());
|
|
let mut res = self.clone();
|
|
for (i, val) in res.0.iter_mut().enumerate() {
|
|
*val *= vector.0[i];
|
|
}
|
|
res
|
|
}
|
|
|
|
#[cfg(test)]
|
|
pub(crate) fn multiexp(&self, vector: &ScalarVector) -> EdwardsPoint {
|
|
debug_assert_eq!(self.len(), vector.len());
|
|
let mut res = Vec::with_capacity(self.len());
|
|
for (point, scalar) in self.0.iter().copied().zip(vector.0.iter().copied()) {
|
|
res.push((scalar, point));
|
|
}
|
|
multiexp(&res)
|
|
}
|
|
|
|
pub(crate) fn len(&self) -> usize {
|
|
self.0.len()
|
|
}
|
|
|
|
pub(crate) fn split(mut self) -> (Self, Self) {
|
|
debug_assert!(self.len() > 1);
|
|
let r = self.0.split_off(self.0.len() / 2);
|
|
debug_assert_eq!(self.len(), r.len());
|
|
(self, PointVector(r))
|
|
}
|
|
}
|