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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
use std::{error, fmt};
use base::{Base, enc, dec};
use tool::{div_ceil, chunk, chunk_mut, chunk_unchecked, chunk_mut_unchecked};
use self::Error::*;
fn decode_block<B: Base>
(base: &B, input: &[u8], output: &mut [u8]) -> Result<u64, Error>
{
let mut x = 0u64;
for j in 0 .. input.len() {
let y = try!(base.val(input[j]).ok_or(BadCharacter(j)));
x |= (y as u64) << base.bit() * (dec(base) - 1 - j);
}
for j in 0 .. output.len() {
output[j] = (x >> 8 * (enc(base) - 1 - j)) as u8;
}
Ok(x)
}
fn decode_last<B: Base>
(base: &B, input: &[u8], output: &mut [u8]) -> Result<usize, Error>
{
let bit = base.bit();
let enc = enc(base);
let dec = dec(base);
let mut r = 0;
let mut x = 0u64;
for j in 0 .. dec {
if bit * j / 8 > r {
r += 1;
if input[j] == base.pad() {
for k in j .. dec {
check!(BadCharacter(k), input[k] == base.pad());
}
let s = bit * j - 8 * r;
let p = (x >> 8 * (enc - 1 - r)) as u8 >> 8 - s;
check!(BadPadding, p == 0);
break;
}
}
let y = try!(base.val(input[j]).ok_or(BadCharacter(j)));
x |= (y as u64) << bit * (dec - 1 - j);
if j == dec - 1 { r += 1; }
}
for j in 0 .. r {
output[j] = (x >> 8 * (enc - 1 - j)) as u8;
}
Ok(r)
}
pub fn decode_len<B: Base>(base: &B, len: usize) -> usize {
div_ceil(len, dec(base)) * enc(base)
}
pub fn decode_nopad_len<B: Base>(base: &B, len: usize) -> Result<usize, Error> {
let olen = base.bit() * len / 8;
let ilen = div_ceil(8 * olen, base.bit());
if len != ilen { return Err(BadLength); }
Ok(olen)
}
pub fn decode_mut<B: Base>
(base: &B, input: &[u8], output: &mut [u8]) -> Result<usize, Error>
{
let enc = enc(base);
let dec = dec(base);
let ilen = input.len();
if ilen == 0 { return Ok(0); }
if ilen % dec != 0 { return Err(BadLength); }
assert_eq!(output.len(), decode_len(base, ilen));
let n = ilen / dec - 1;
for i in 0 .. n {
let input = unsafe { chunk_unchecked(input, dec, i) };
let output = unsafe { chunk_mut_unchecked(output, enc, i) };
let _ = try!(decode_block(base, input, output)
.map_err(|e| e.shift(dec * i)));
}
decode_last(base, chunk(input, dec, n), chunk_mut(output, enc, n))
.map_err(|e| e.shift(dec * n))
.map(|r| enc * n + r)
}
pub fn decode_nopad_mut<B: Base>
(base: &B, input: &[u8], output: &mut [u8]) -> Result<(), Error>
{
let enc = enc(base);
let dec = dec(base);
let ilen = input.len();
let olen = try!(decode_nopad_len(base, ilen));
assert_eq!(output.len(), olen);
let n = ilen / dec;
for i in 0 .. n {
let input = unsafe { chunk_unchecked(input, dec, i) };
let output = unsafe { chunk_mut_unchecked(output, enc, i) };
let _ = try!(decode_block(base, input, output)
.map_err(|e| e.shift(dec * i)));
}
let x = try!(decode_block(base, &input[dec * n ..], &mut output[enc * n ..])
.map_err(|e| e.shift(dec * n)));
if (x >> 8 * (enc * (n + 1) - (olen + 1))) as u8 != 0 {
return Err(BadPadding);
}
Ok(())
}
pub fn decode<B: Base>(base: &B, input: &[u8]) -> Result<Vec<u8>, Error> {
let mut output = vec![0u8; decode_len(base, input.len())];
let len = try!(decode_mut(base, input, &mut output));
output.truncate(len);
Ok(output)
}
pub fn decode_nopad<B: Base>(base: &B, input: &[u8]) -> Result<Vec<u8>, Error> {
let mut output = vec![0u8; try!(decode_nopad_len(base, input.len()))];
try!(decode_nopad_mut(base, input, &mut output));
Ok(output)
}
#[derive(Copy,Clone,Debug,PartialEq,Eq)]
pub enum Error {
BadLength,
BadCharacter(usize),
BadPadding,
}
impl Error {
pub fn shift(self, delta: usize) -> Error {
match self {
BadCharacter(pos) => BadCharacter(pos + delta),
other => other,
}
}
pub fn map<F: FnOnce(usize) -> usize>(self, f: F) -> Error {
match self {
BadCharacter(pos) => BadCharacter(f(pos)),
other => other,
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
&BadCharacter(p) => write!(f, "Unexpected character at offset {}", p),
&BadLength => write!(f, "Unexpected length"),
&BadPadding => write!(f, "Non-zero padding"),
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match self {
&BadCharacter(_) => "unexpected character",
&BadLength => "unexpected length",
&BadPadding => "non-zero padding",
}
}
}