starkom-poseidon2 1.1.0

Starkom's implementation of the Poseidon2 algebraic hash.
Documentation
// Copyright 2026 The Libernet Team
// SPDX-License-Identifier: Apache-2.0

mod params;
mod poseidon;

#[cfg(feature = "bluesky")]
pub mod bluesky;

#[cfg(feature = "bls12_381")]
pub mod bls12_381;

pub use poseidon::*;

#[cfg(feature = "bluesky")]
pub use bluesky::*;

#[cfg(feature = "bls12_381")]
pub use bls12_381::*;