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
use crate::errors::{LoopError, OverflowError};
use core::convert::{TryFrom, TryInto};
pub trait StreamCipher {
#[inline]
fn apply_keystream(&mut self, data: &mut [u8]) {
self.try_apply_keystream(data).unwrap();
}
fn try_apply_keystream(&mut self, data: &mut [u8]) -> Result<(), LoopError>;
}
pub trait StreamCipherSeek {
fn try_current_pos<T: SeekNum>(&self) -> Result<T, OverflowError>;
fn try_seek<T: SeekNum>(&mut self, pos: T) -> Result<(), LoopError>;
fn current_pos<T: SeekNum>(&self) -> T {
self.try_current_pos().unwrap()
}
fn seek<T: SeekNum>(&mut self, pos: T) {
self.try_seek(pos).unwrap()
}
}
pub trait AsyncStreamCipher {
fn encrypt(&mut self, data: &mut [u8]);
fn decrypt(&mut self, data: &mut [u8]);
}
impl<C: StreamCipher> StreamCipher for &mut C {
#[inline]
fn apply_keystream(&mut self, data: &mut [u8]) {
C::apply_keystream(self, data);
}
#[inline]
fn try_apply_keystream(&mut self, data: &mut [u8]) -> Result<(), LoopError> {
C::try_apply_keystream(self, data)
}
}
#[rustfmt::skip]
pub trait SeekNum:
Sized
+ TryInto<u8> + TryFrom<u8> + TryInto<i8> + TryFrom<i8>
+ TryInto<u16> + TryFrom<u16> + TryInto<i16> + TryFrom<i16>
+ TryInto<u32> + TryFrom<u32> + TryInto<i32> + TryFrom<i32>
+ TryInto<u64> + TryFrom<u64> + TryInto<i64> + TryFrom<i64>
+ TryInto<u128> + TryFrom<u128> + TryInto<i128> + TryFrom<i128>
+ TryInto<usize> + TryFrom<usize> + TryInto<isize> + TryFrom<isize>
{
fn from_block_byte<T: SeekNum>(block: T, byte: u8, bs: u8) -> Result<Self, OverflowError>;
fn to_block_byte<T: SeekNum>(self, bs: u8) -> Result<(T, u8), OverflowError>;
}
macro_rules! impl_seek_num {
{$($t:ty )*} => {
$(
impl SeekNum for $t {
fn from_block_byte<T: TryInto<Self>>(block: T, byte: u8, bs: u8) -> Result<Self, OverflowError> {
debug_assert!(byte < bs);
let block = block.try_into().map_err(|_| OverflowError)?;
let pos = block.checked_mul(bs as Self).ok_or(OverflowError)? + (byte as Self);
Ok(pos)
}
fn to_block_byte<T: TryFrom<Self>>(self, bs: u8) -> Result<(T, u8), OverflowError> {
let bs = bs as Self;
let byte = self % bs;
let block = T::try_from(self/bs).map_err(|_| OverflowError)?;
Ok((block, byte as u8))
}
}
)*
};
}
impl_seek_num! { u8 u16 u32 u64 u128 usize i32 }