iota-crypto 0.23.2

The canonical source of cryptographic ground-truth for all IOTA Rust projects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod batched;
mod regular;

pub use batched::{CurlPBatchHasher, BATCH_SIZE};
pub use regular::CurlP;

pub(crate) enum SpongeDirection {
    Absorb,
    Squeeze,
}