1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
use crate::c;
use core;
use polyfill::slice::u32_from_le_u8;
pub type Key = [u32; KEY_LEN_IN_BYTES / 4];
pub fn key_from_bytes(key_bytes: &[u8; KEY_LEN_IN_BYTES]) -> Key {
let mut key = [0u32; KEY_LEN_IN_BYTES / 4];
for (key_u32, key_u8_4) in key.iter_mut().zip(key_bytes.chunks(4)) {
*key_u32 = u32_from_le_u8(slice_as_array_ref!(key_u8_4, 4).unwrap());
}
key
}
#[inline]
pub fn chacha20_xor_in_place(key: &Key, counter: &Counter, in_out: &mut [u8]) {
chacha20_xor_inner(key, counter, in_out.as_ptr(), in_out.len(),
in_out.as_mut_ptr());
}
pub fn chacha20_xor_overlapping(key: &Key, counter: &Counter,
in_out: &mut [u8], in_prefix_len: usize) {
let len = in_out.len() - in_prefix_len;
if cfg!(any(target_arch = "arm", target_arch = "x86")) &&
in_prefix_len != 0 {
unsafe {
core::ptr::copy(in_out[in_prefix_len..].as_ptr(),
in_out.as_mut_ptr(), len);
}
chacha20_xor_in_place(key, &counter, &mut in_out[..len]);
} else {
chacha20_xor_inner(key, counter, in_out[in_prefix_len..].as_ptr(),
len, in_out.as_mut_ptr());
}
}
#[inline]
pub fn chacha20_xor_inner(key: &Key, counter: &Counter, input: *const u8,
in_out_len: usize, output: *mut u8) {
debug_assert!(core::mem::align_of_val(key) >= 4);
debug_assert!(core::mem::align_of_val(counter) >= 4);
unsafe {
GFp_ChaCha20_ctr32(output, input, in_out_len, key, counter);
}
}
pub type Counter = [u32; 4];
#[inline]
pub fn make_counter(nonce: &[u8; NONCE_LEN], counter: u32) -> Counter {
[counter.to_le(),
u32_from_le_u8(slice_as_array_ref!(&nonce[0..4], 4).unwrap()),
u32_from_le_u8(slice_as_array_ref!(&nonce[4..8], 4).unwrap()),
u32_from_le_u8(slice_as_array_ref!(&nonce[8..12], 4).unwrap())]
}
extern {
fn GFp_ChaCha20_ctr32(out: *mut u8, in_: *const u8, in_len: c::size_t,
key: &Key, counter: &Counter);
}
pub const KEY_LEN_IN_BYTES: usize = 256 / 8;
pub const NONCE_LEN: usize = 12;
#[cfg(test)]
mod tests {
use crate::test;
use super::*;
use super::GFp_ChaCha20_ctr32;
#[test]
pub fn chacha20_tests() {
test::from_file("src/chacha_tests.txt", |section, test_case| {
assert_eq!(section, "");
let key = test_case.consume_bytes("Key");
let key = slice_as_array_ref!(&key, KEY_LEN_IN_BYTES)?;
let key = key_from_bytes(key);
let ctr = test_case.consume_usize("Ctr");
let nonce_bytes = test_case.consume_bytes("Nonce");
let nonce = slice_as_array_ref!(&nonce_bytes, NONCE_LEN).unwrap();
let ctr = make_counter(&nonce, ctr as u32);
let input = test_case.consume_bytes("Input");
let output = test_case.consume_bytes("Output");
let mut in_out_buf = vec![0u8; input.len() + 276];
for len in 0..(input.len() + 1) {
chacha20_test_case_inner(&key, &ctr, &input[..len],
&output[..len], len, &mut in_out_buf);
}
Ok(())
});
}
fn chacha20_test_case_inner(key: &Key, ctr: &Counter, input: &[u8],
expected: &[u8], len: usize,
in_out_buf: &mut [u8]) {
unsafe {
GFp_ChaCha20_ctr32(in_out_buf.as_mut_ptr(), input[..len].as_ptr(),
len, key, &ctr);
}
assert_eq!(&in_out_buf[..len], expected);
let max_offset =
if cfg!(any(target_arch = "x86", target_arch = "arm")) {
0
} else {
259
};
for alignment in 0..16 {
for offset in 0..(max_offset + 1) {
in_out_buf[alignment+offset..][..len].copy_from_slice(input);
unsafe {
GFp_ChaCha20_ctr32(in_out_buf[alignment..].as_mut_ptr(),
in_out_buf[alignment + offset..].as_ptr(),
len, key, ctr);
assert_eq!(&in_out_buf[alignment..][..len], expected);
}
}
}
}
}