Fully document crypto/

This commit is contained in:
Luke Parker
2023-03-20 20:10:00 -04:00
parent e1bb2c191b
commit 8d4d630e0f
45 changed files with 335 additions and 208 deletions

View File

@@ -1,13 +1,14 @@
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![no_std]
#![doc = include_str!("../README.md")]
mod backend;
pub mod scalar;
mod scalar;
pub use scalar::Scalar;
pub mod field;
mod field;
pub use field::FieldElement;
pub mod point;
mod point;
pub use point::Point;