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
use core::ops::{Deref, DerefMut};
use {IV};
use slice_ext::{SliceExt, zero_bytes};

#[derive(Copy, Clone, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
pub struct ParameterBlock(pub [u64; 8]);

impl ParameterBlock {
	pub fn new() -> Self {
		Self::default()
	}

	pub fn digest_len(&self) -> u8 {
		self[0]
	}

	pub fn set_digest_len(mut self, digest_len: u8) -> Self {
		self[0] = digest_len;
		self
	}

	pub fn key_len(&self) -> u8 {
		self[1]
	}

	pub fn set_key_len(mut self, key_len: u8) -> Self {
		self[1] = key_len;
		self
	}

	pub fn fanout(&self) -> u8 {
		self[2]
	}

	pub fn set_fanout(mut self, fanout: u8) -> Self {
		self[2] = fanout;
		self
	}

	pub fn max_depth(&self) -> u8 {
		self[3]
	}

	pub fn set_max_depth(mut self, max_depth: u8) -> Self {
		self[3] = max_depth;
		self
	}

	pub fn max_leaf_len(&self) -> u32 {
		(self.0[0] >> 32) as u32
	}

	pub fn set_max_leaf_len(mut self, max_leaf_len: u32) -> Self {
		self[4..8].copy_from_slice([max_leaf_len].as_bytes());
		self
	}

	pub fn node_offset(&self) -> u64 {
		self.0[1]
	}

	pub fn set_node_offset(mut self, node_offset: u64) -> Self {
		self.0[1] = node_offset;
		self
	}

	pub fn node_depth(&self) -> u8 {
		self[16]
	}

	pub fn set_node_depth(mut self, node_depth: u8) -> Self {
		self[16] = node_depth;
		self
	}

	pub fn inner_len(&self) -> u8 {
		self[17]
	}

	pub fn set_inner_len(mut self, inner_len: u8) -> Self {
		self[17] = inner_len;
		self
	}

	pub fn salt(&self) -> &[u8] {
		&self[32..48]
	}

	pub fn set_salt(mut self, salt: &[u8]) -> Self {
		assert!(salt.len() <= 16, "salt length must be <= 16");
		self[32..32 + salt.len()].copy_from_slice(salt);
		zero_bytes(&mut self[32 + salt.len()..48]);
		self
	}

	pub fn personalization(&self) -> &[u8] {
		&self[48..64]
	}

	pub fn set_personalization(mut self, personalization: &[u8]) -> Self {
		assert!(personalization.len() <= 16, "personalization length must be <= 16");

		self[48..48 + personalization.len()].copy_from_slice(personalization);
		zero_bytes(&mut self[48 + personalization.len()..64]);
		self
	}

	pub fn xor_with_iv(mut self) -> Self {
		for (a, b) in self.0.iter_mut().zip(IV.iter()) {
			*a ^= *b;
		}

		self
	}
}

impl AsRef<[u8]> for ParameterBlock {
	fn as_ref(&self) -> &[u8] {
		self.0.as_bytes()
	}
}

impl AsMut<[u8]> for ParameterBlock {
	fn as_mut(&mut self) -> &mut [u8] {
		self.0.as_mut_bytes()
	}
}

impl Deref for ParameterBlock {
	type Target = [u8];

	fn deref(&self) -> &Self::Target {
		self.as_ref()
	}
}

impl DerefMut for ParameterBlock {
	fn deref_mut(&mut self) -> &mut Self::Target {
		self.as_mut()
	}
}