//! Pre-computed SPAKE2 constants for P-256 from RFC 9382 §4.
//!
//! Points M and N in compressed SEC1 encoding (33 bytes each).
/// M point for SPAKE2 with P-256 (compressed SEC1).
///
/// From RFC 9382 §4:
/// M = 0x02886e2f97ace46e55ba9dd7242579f2993b64e16ef3dcab95afd497333d8fa12f
pub const SPAKE2_P256_M_COMPRESSED: = ;
/// N point for SPAKE2 with P-256 (compressed SEC1).
///
/// From RFC 9382 §4:
/// N = 0x03d8bbd6c639c62937b04d997f38c3770719c629d7014d49a24b4f98baa1292b49
pub const SPAKE2_P256_N_COMPRESSED: = ;