ironshield-types 0.1.27

Standardized Types, Headers, & Methods for IronShield Bindings
Documentation
//! Shared types and utilities for the IronShield PoW system
//!
//! This crate contains the common data structures and serialization utilities
//! used across ironshield-core, ironshield-cloudflare, and ironshield-wasm.

mod serde_utils;
mod challenge;
mod response;
mod token;
mod crypto;
mod request;

pub use serde_utils::*;
pub use challenge::*;
pub use response::*;
pub use request::*;
pub use token::*;
pub use crypto::*;

// Re-export of the library chrono for convenience.
pub use chrono;

// Re-export of the ed25519_dalek library for convenience.
pub use ed25519_dalek::SigningKey;