//! SPAKE2+ augmented PAKE protocol implementation.
//!
//! Implements the SPAKE2+ protocol per RFC 9383 with pluggable ciphersuites.
//! Unlike balanced SPAKE2, the server (Verifier) stores only a verifier
//! `(w0, L)` derived from the password — not the password itself.
extern crate alloc;
pub use Spake2PlusCiphersuite;
pub use Spake2PlusError;
pub use ;
pub use compute_verifier;
pub use Spake2PlusOutput;
pub use ;