diff --git a/rand_chacha/src/chacha.rs b/rand_chacha/src/chacha.rs index 17bcc552..a3de5ed4 100644 --- a/rand_chacha/src/chacha.rs +++ b/rand_chacha/src/chacha.rs @@ -24,6 +24,7 @@ const BUF_BLOCKS: u8 = 4; // number of 32-bit words per ChaCha block (fixed by algorithm definition) const BLOCK_WORDS: u8 = 16; +#[repr(transparent)] pub struct Array64([T; 64]); impl Default for Array64 where T: Default