stealth_address_kit/
vesta_impl.rs

1use crate::{define_curve_tests, stealth_addresses::StealthAddressOnCurve};
2/// Implementation of the StealthAddressOnCurve trait for the Vesta curve.
3use ark_vesta::{Fr, Projective};
4
5pub struct Vesta;
6
7impl StealthAddressOnCurve for Vesta {
8    type Projective = Projective;
9}
10
11#[cfg(feature = "ffi")]
12use crate::define_curve_ffi;
13#[cfg(feature = "ffi")]
14define_curve_ffi!(vesta, Vesta, Fr, Projective, 32, 33);
15define_curve_tests!(Vesta);