1 #![cfg_attr(feature="cargo-clippy", allow(unreadable_literal))]
2 
3 use simd::u32x4;
4 
5 pub const U32X4_0: u32x4 = u32x4(0, 0, 0, 0);
6 pub const U32X4_1: u32x4 =
7     u32x4(0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff);
8 
9 // This array is not accessed in any key-dependant way, so there are no timing problems inherent in
10 // using it.
11 pub static RCON: [u32; 10] =
12     [0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36];
13