miden-crypto/crypto/src/lib.rs
Victor Lopez ebf9557d1c
feat(crypto): expose api modules
Currently the API modules are hidden to the crate scope.

In order to avoid global permissive allows, they can initially be
exported, and tweaked to local scopes as they get implemented, finalized
and tested.

Related to #3
2022-10-20 18:04:10 +02:00

12 lines
305 B
Rust

pub use winterfell::math::{
fields::{f64::BaseElement as Felt, QuadExtension},
ExtensionOf, FieldElement, StarkField,
};
pub mod hash;
pub mod merkle;
// TYPE ALIASES
// ================================================================================================
pub type Word = [Felt; 4];