-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathplain_text.rs
50 lines (43 loc) · 1.16 KB
/
plain_text.rs
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
use getset::Getters;
use itertools::Itertools;
use crate::{
block::{
block_size::{BlockSize, BlockSizeTrait},
Block,
},
cypher_text::encode::AmountBlocksTrait,
};
/// PKCS7 padded plain text.
#[derive(Debug, Getters)]
pub(super) struct PlainText {
#[getset(get = "pub(super)")]
blocks: Vec<Block>,
}
impl PlainText {
pub(super) fn new(input_data: &str, block_size: &BlockSize) -> Self {
let block_size = **block_size as usize;
let padding_size = block_size - input_data.len() % block_size;
let padded_blocks = input_data
.as_bytes()
.iter()
.cloned()
.pad_using(input_data.len() + padding_size, |_| padding_size as u8)
.chunks(block_size)
.into_iter()
.map(|chunk| Block::from(&chunk.collect::<Vec<_>>()[..]))
.collect();
Self {
blocks: padded_blocks,
}
}
}
impl AmountBlocksTrait for PlainText {
fn amount_blocks(&self) -> usize {
self.blocks.len()
}
}
impl BlockSizeTrait for PlainText {
fn block_size(&self) -> BlockSize {
self.blocks()[0].block_size()
}
}