curve25519-dalek-source/src/backend/vector/avx2/mod.rs

22 lines
484 B
Rust
Raw Normal View History

2017-10-23 21:03:23 +00:00
// -*- mode: rust; -*-
//
// This file is part of curve25519-dalek.
2021-03-25 04:10:55 +00:00
// Copyright (c) 2016-2021 isis lovecruft
// Copyright (c) 2016-2019 Henry de Valence
2017-10-23 21:03:23 +00:00
// See LICENSE for licensing information.
//
// Authors:
2021-03-25 04:10:55 +00:00
// - isis agora lovecruft <isis@patternsinthevoid.net>
2017-10-23 21:03:23 +00:00
// - Henry de Valence <hdevalence@hdevalence.ca>
#![cfg_attr(
feature = "nightly",
2019-08-06 19:22:59 +00:00
doc(include = "../../../../docs/avx2-notes.md")
)]
2017-11-27 22:06:04 +00:00
2017-10-23 21:03:23 +00:00
pub(crate) mod field;
pub(crate) mod edwards;
pub(crate) mod constants;