curve25519_dalek/backend/vector/ifma/mod.rs
1// -*- mode: rust; -*-
2//
3// This file is part of curve25519-dalek.
4// Copyright (c) 2018-2019 Henry de Valence
5// See LICENSE for licensing information.
6//
7// Authors:
8// - Henry de Valence <hdevalence@hdevalence.ca>
9
10#![doc = include_str!("../../../../docs/ifma-notes.md")]
11
12#[allow(missing_docs)]
13pub mod field;
14
15#[allow(missing_docs)]
16pub mod edwards;
17
18pub mod constants;
19
20pub(crate) use self::edwards::{CachedPoint, ExtendedPoint};