Constant wow_srp::LARGE_SAFE_PRIME_LITTLE_ENDIAN[][src]

pub const LARGE_SAFE_PRIME_LITTLE_ENDIAN: [u8; 32];
Expand description

Static large safe prime (N) value. The little endian version of LARGE_SAFE_PRIME_BIG_ENDIAN. This is the version that should be sent over the network in the CMD_AUTH_LOGON_CHALLENGE_Server packet.

Always has the static size of 32 bytes.

use hex_literal::hex;
use wow_srp::LARGE_SAFE_PRIME_LITTLE_ENDIAN;

assert_eq!(LARGE_SAFE_PRIME_LITTLE_ENDIAN,
 hex!("b79b3e2a87823cab8f5ebfbf8eb10108535006298b5badbd5b53e1895e644b89"));