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
#![no_std]

extern crate byteorder;

mod util;
mod ops;

use byteorder::ByteOrder;
pub use ops::Hc256Rng;


/// ```
/// use hc256::HC256;
/// let mut output = [0; 32];
///
/// HC256::new(&[0; 32], &[0; 32]).process(&[0; 32], &mut output);
/// assert_eq!(
///     output,
///     [
///         0x5b, 0x07, 0x89, 0x85, 0xd8, 0xf6, 0xf3, 0x0d,
///         0x42, 0xc5, 0xc0, 0x2f, 0xa6, 0xb6, 0x79, 0x51,
///         0x53, 0xf0, 0x65, 0x34, 0x80, 0x1f, 0x89, 0xf2,
///         0x4e, 0x74, 0x24, 0x8b, 0x72, 0x0b, 0x48, 0x18
///     ]
/// );
///
/// let mut iv = [0; 32];
/// iv[0] = 1;
/// HC256::new(&[0; 32], &iv).process(&[0; 32], &mut output);
/// assert_eq!(
///     output,
///     [
///         0xaf, 0xe2, 0xa2, 0xbf, 0x4f, 0x17, 0xce, 0xe9,
///         0xfe, 0xc2, 0x05, 0x8b, 0xd1, 0xb1, 0x8b, 0xb1,
///         0x5f, 0xc0, 0x42, 0xee, 0x71, 0x2b, 0x31, 0x01,
///         0xdd, 0x50, 0x1f, 0xc6, 0x0b, 0x08, 0x2a, 0x50
///     ]
/// );
///
/// let mut key = [0; 32];
/// key[0] = 0x55;
/// HC256::new(&key, &[0; 32]).process(&[0; 32], &mut output);
/// assert_eq!(
///     output,
///     [
///         0x1c, 0x40, 0x4a, 0xfe, 0x4f, 0xe2, 0x5f, 0xed,
///         0x95, 0x8f, 0x9a, 0xd1, 0xae, 0x36, 0xc0, 0x6f,
///         0x88, 0xa6, 0x5a, 0x3c, 0xc0, 0xab, 0xe2, 0x23,
///         0xae, 0xb3, 0x90, 0x2f, 0x42, 0x0e, 0xd3, 0xa8
///     ]
/// );
///
/// let mut key = [0; 32];
/// key[0] = 0x55;
/// let mut cipher = HC256::new(&key, &[0; 32]);
/// cipher.process(&[0; 11], &mut output[..11]);
/// cipher.process(&[0; 21], &mut output[11..]);
/// assert_eq!(
///     output,
///     [
///         0x1c, 0x40, 0x4a, 0xfe, 0x4f, 0xe2, 0x5f, 0xed,
///         0x95, 0x8f, 0x9a, 0xd1, 0xae, 0x36, 0xc0, 0x6f,
///         0x88, 0xa6, 0x5a, 0x3c, 0xc0, 0xab, 0xe2, 0x23,
///         0xae, 0xb3, 0x90, 0x2f, 0x42, 0x0e, 0xd3, 0xa8
///     ]
/// );
/// ```
#[derive(Clone)]
pub struct HC256 {
    inner: Hc256Rng,
    buff: u32,
    count: usize
}

impl HC256 {
    pub fn new(key: &[u8], iv: &[u8]) -> HC256 {
        let mut ukey = [0; 8];
        let mut uiv = [0; 8];
        util::u8_to_u32(key, &mut ukey);
        util::u8_to_u32(iv, &mut uiv);

        HC256 {
            inner: Hc256Rng::init(&ukey, &uiv),
            buff: 0,
            count: 0
        }
    }

    pub fn process(&mut self, input: &[u8], output: &mut [u8]) {
        let mut pos = 0;

        if self.count != 0 && input.len() >= self.count {
            pos += self.count;
            for (i, b) in self.take(pos).enumerate() {
                output[i] = input[i] ^ b;
            }
        }

        while pos + 4 <= input.len() {
            let end = pos + 4;

            util::u32_to_u8(
                util::Endian::read_u32(&input[pos..end]) ^ self.inner.gen(),
                &mut output[pos..end]
            );

            pos = end;
        }

        for b in self.take(input.len() - pos) {
            output[pos] = input[pos] ^ b;
            pos += 1;
        }
    }
}

impl Iterator for HC256 {
    type Item = u8;

    fn next(&mut self) -> Option<Self::Item> {
        if self.count == 0 {
            self.buff = self.inner.gen();
            self.count = 4;
        }
        let output = (self.buff & 0xff) as u8;
        self.buff >>= 8;
        self.count -= 1;
        Some(output)
    }
}