#[cfg(feature = "alloc")]
pub(super) use vartime::BASEPOINT_TABLE_VARTIME;
#[cfg(feature = "alloc")]
mod vartime {
use crate::{NistP384, ProjectivePoint};
use primeorder::PrimeCurveWithBasepointTableVartime;
const WINDOW_SIZE_VARTIME: usize = 8;
type BasepointTableVartime =
elliptic_curve::point::BasepointTableVartime<ProjectivePoint, WINDOW_SIZE_VARTIME>;
pub(crate) static BASEPOINT_TABLE_VARTIME: BasepointTableVartime = BasepointTableVartime::new();
impl PrimeCurveWithBasepointTableVartime<WINDOW_SIZE_VARTIME> for NistP384 {
const BASEPOINT_TABLE_VARTIME: &'static BasepointTableVartime = &BASEPOINT_TABLE_VARTIME;
}
}