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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
use crate::errors::OutIsTooSmallError;
use core::{marker::PhantomData, slice};
#[cfg(feature = "block-padding")]
use crate::errors::PadError;
#[cfg(feature = "block-padding")]
use crate::{InOut, InOutBuf};
#[cfg(feature = "block-padding")]
use block_padding::{PadType, Padding};
#[cfg(feature = "block-padding")]
use generic_array::{ArrayLength, GenericArray};
pub struct InOutBufReserved<'inp, 'out, T> {
in_ptr: *const T,
out_ptr: *mut T,
in_len: usize,
out_len: usize,
_pd: PhantomData<(&'inp T, &'out mut T)>,
}
impl<'a, T> InOutBufReserved<'a, 'a, T> {
pub fn from_mut_slice(buf: &'a mut [T], msg_len: usize) -> Result<Self, OutIsTooSmallError> {
if msg_len > buf.len() {
return Err(OutIsTooSmallError);
}
let p = buf.as_mut_ptr();
let out_len = buf.len();
Ok(Self {
in_ptr: p,
out_ptr: p,
in_len: msg_len,
out_len,
_pd: PhantomData,
})
}
#[inline(always)]
pub unsafe fn from_raw(
in_ptr: *const T,
in_len: usize,
out_ptr: *mut T,
out_len: usize,
) -> Self {
Self {
in_ptr,
out_ptr,
in_len,
out_len,
_pd: PhantomData,
}
}
#[inline(always)]
pub fn into_raw(self) -> (*const T, *mut T) {
(self.in_ptr, self.out_ptr)
}
#[inline(always)]
pub fn get_in_len(&self) -> usize {
self.in_len
}
#[inline(always)]
pub fn get_out_len(&self) -> usize {
self.in_len
}
}
impl<'inp, 'out, T> InOutBufReserved<'inp, 'out, T> {
pub fn from_slices(
in_buf: &'inp [T],
out_buf: &'out mut [T],
) -> Result<Self, OutIsTooSmallError> {
if in_buf.len() > out_buf.len() {
return Err(OutIsTooSmallError);
}
Ok(Self {
in_ptr: in_buf.as_ptr(),
out_ptr: out_buf.as_mut_ptr(),
in_len: in_buf.len(),
out_len: out_buf.len(),
_pd: PhantomData,
})
}
#[inline(always)]
pub fn get_in<'a>(&'a self) -> &'a [T] {
unsafe { slice::from_raw_parts(self.in_ptr, self.in_len) }
}
#[inline(always)]
pub fn get_out<'a>(&'a mut self) -> &'a mut [T] {
unsafe { slice::from_raw_parts_mut(self.out_ptr, self.out_len) }
}
}
impl<'inp, 'out> InOutBufReserved<'inp, 'out, u8> {
#[cfg(feature = "block-padding")]
#[cfg_attr(docsrs, doc(cfg(feature = "block-padding")))]
#[inline(always)]
pub fn into_padded_blocks<P, BS>(self) -> Result<PaddedInOutBuf<'inp, 'out, BS>, PadError>
where
P: Padding<BS>,
BS: ArrayLength<u8>,
{
let bs = BS::USIZE;
let blocks_len = self.in_len / bs;
let tail_len = self.in_len - bs * blocks_len;
let blocks = unsafe {
InOutBuf::from_raw(
self.in_ptr as *const GenericArray<u8, BS>,
self.out_ptr as *mut GenericArray<u8, BS>,
blocks_len,
)
};
let mut tail_in = GenericArray::<u8, BS>::default();
let tail_out = match P::TYPE {
PadType::NoPadding | PadType::Ambiguous if tail_len == 0 => None,
PadType::NoPadding => return Err(PadError),
PadType::Reversible | PadType::Ambiguous => {
let blen = bs * blocks_len;
let res_len = blen + bs;
if res_len > self.out_len {
return Err(PadError);
}
let out_block = unsafe {
core::ptr::copy_nonoverlapping(
self.in_ptr.add(blen),
tail_in.as_mut_ptr(),
tail_len,
);
&mut *(self.out_ptr.add(blen) as *mut GenericArray<u8, BS>)
};
P::pad(&mut tail_in, tail_len);
Some(out_block)
}
};
Ok(PaddedInOutBuf {
blocks,
tail_in,
tail_out,
})
}
}
#[cfg(feature = "block-padding")]
#[cfg_attr(docsrs, doc(cfg(feature = "block-padding")))]
pub struct PaddedInOutBuf<'inp, 'out, BS: ArrayLength<u8>> {
blocks: InOutBuf<'inp, 'out, GenericArray<u8, BS>>,
tail_in: GenericArray<u8, BS>,
tail_out: Option<&'out mut GenericArray<u8, BS>>,
}
#[cfg(feature = "block-padding")]
impl<'inp, 'out, BS: ArrayLength<u8>> PaddedInOutBuf<'inp, 'out, BS> {
#[inline(always)]
pub fn get_blocks<'a>(&'a mut self) -> InOutBuf<'a, 'a, GenericArray<u8, BS>> {
self.blocks.reborrow()
}
#[inline(always)]
pub fn get_tail_block<'a>(&'a mut self) -> Option<InOut<'a, 'a, GenericArray<u8, BS>>> {
match self.tail_out.as_deref_mut() {
Some(out_block) => Some((&self.tail_in, out_block).into()),
None => None,
}
}
#[inline(always)]
pub fn into_out(self) -> &'out [u8] {
let total_blocks = if self.tail_out.is_some() {
self.blocks.len() + 1
} else {
self.blocks.len()
};
let res_len = BS::USIZE * total_blocks;
let (_, out_ptr) = self.blocks.into_raw();
unsafe { slice::from_raw_parts(out_ptr as *const u8, res_len) }
}
}