Constant wow_srp::LARGE_SAFE_PRIME_BIG_ENDIAN[][src]

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

Static large safe prime (N) value. The big endian version of LARGE_SAFE_PRIME_LITTLE_ENDIAN. This version should not be sent over the network and should generally not be used.

Only here for completeness sake.

Always has the static size of 32 bytes.

use hex_literal::hex;
use wow_srp::LARGE_SAFE_PRIME_BIG_ENDIAN;

assert_eq!(LARGE_SAFE_PRIME_BIG_ENDIAN,
 hex!("894B645E89E1535BBDAD5B8B290650530801B18EBFBF5E8FAB3C82872A3E9BB7"));