//! Registration helper for computing the SPAKE2+ verifier.
//!
//! During registration, the Prover derives `(w0, w1)` from the password
//! (via password stretching), then computes `L = w1*G` and sends `(w0, L)`
//! to the Verifier for storage.
use Vec;
use CpaceGroup;
use crateSpake2PlusCiphersuite;
/// Compute the verifier point `L = w1*G` from the scalar `w1`.
///
/// The password stretching (e.g. PBKDF/Argon2 to derive w0, w1) is the
/// caller's responsibility.