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
//! Symmetric crypto primitives built with strobe.
use crate::constants::{NONCE_LEN, TAG_LEN};
use rand::{rngs::OsRng, thread_rng, RngCore};
pub use strobe_rs::AuthError;
use strobe_rs::{SecParam, Strobe};

/// Represents plaintext with an associated MAC.
#[derive(Clone, Debug)]
pub struct AuthPlaintext {
    mac: Vec<u8>,
    pt: Vec<u8>,
}

impl AuthPlaintext {
    /// Dumps the bytes.
    ///
    /// NOTE: The MAC length is fixed in this implementation, so there is no immediate need to
    /// delimit the plaintext from the tag.
    pub fn into_bytes(self) -> Vec<u8> {
        // Output mac || pt
        let mut concatted = self.mac;
        concatted.extend(self.pt);
        concatted
    }

    /// Builds an `AuthPlaintext` struct from raw bytes. Returns `None` when the input is
    /// too short.
    pub fn from_bytes(mut bytes: Vec<u8>) -> Option<AuthPlaintext> {
        if bytes.len() < TAG_LEN {
            None
        } else {
            // Interpret the input as mac || pt
            let pt = bytes.split_off(TAG_LEN);
            let mac = bytes;
            Some(AuthPlaintext { mac, pt })
        }
    }
}

/// A ciphertext object with an associated MAC and nonce.
#[derive(Clone, Debug)]
pub struct AuthCiphertext {
    mac: Vec<u8>,
    nonce: Vec<u8>,
    ct: Vec<u8>,
}

impl AuthCiphertext {
    /// Dumps the bytes.
    ///
    /// NOTE: The MAC and nonce lengths are fixed in this implementation, so there is no immediate
    /// need to delimit the components.
    pub fn into_bytes(self) -> Vec<u8> {
        // Output mac || nonce || ct
        let mut concatted = self.mac;
        concatted.extend(self.nonce);
        concatted.extend(self.ct);
        concatted
    }

    /// Builds an `AuthCiphertext` struct from raw bytes. Returns `None` when the input is
    /// too short.
    pub fn from_bytes(mut bytes: Vec<u8>) -> Option<AuthCiphertext> {
        if bytes.len() < TAG_LEN + NONCE_LEN {
            None
        } else {
            // Interpret the input as mac || nonce || ct
            let mut rest = bytes.split_off(TAG_LEN);
            let mac = bytes;
            let rest2 = rest.split_off(NONCE_LEN);
            let nonce = rest;
            let ct = rest2;
            Some(AuthCiphertext { mac, nonce, ct })
        }
    }
}

/// An object for facilitating continuous hashing. General use is to call the `write` method a
/// bunch of times, and then call a final `sum`.
///
/// Input is streamed in, meaning that
/// ```rust
/// # use disco::symmetric::DiscoHash;
/// # let mut h = DiscoHash::new(32);
/// h.write(b"foo bar");
/// ```
/// is equivalent to
/// ```rust
/// # use disco::symmetric::DiscoHash;
/// # let mut h = DiscoHash::new(32);
/// h.write(b"foo");
/// h.write(b" bar");
/// ```
#[derive(Clone)]
pub struct DiscoHash {
    strobe_ctx: Strobe,
    initialized: bool,
    output_len: usize,
}

impl DiscoHash {
    /// Makes a new `DisocHash` object with the given digest size.
    ///
    /// Panics when `output_len < 32`.
    pub fn new(output_len: usize) -> DiscoHash {
        assert!(output_len >= 32);
        DiscoHash {
            strobe_ctx: Strobe::new(b"DiscoHash", SecParam::B128),
            initialized: false,
            output_len,
        }
    }

    /// Absorbs more data into the hash's state
    pub fn write(&mut self, input_data: &[u8]) {
        self.strobe_ctx.ad(input_data, self.initialized);
        self.initialized = true
    }

    /// Reads the output from the hash. This affects the internal state, so reading will consume
    /// this `DiscoHash` instance. If you want to write and read more, you can clone this instance.
    pub fn sum(mut self) -> Vec<u8> {
        let mut buf = vec![0u8; self.output_len];
        self.strobe_ctx.prf(&mut buf, false);
        buf
    }

    /// Random byte arrays
    #[inline]
    pub fn random(output_len: usize) -> Vec<u8> {
        let mut buf = vec![0u8; output_len];
        OsRng.fill_bytes(&mut buf);
        buf
    }
}

/// Hashes an input of any length and obtain an output of length greater or equal to
/// 256 bits (32 bytes).
///
/// Panics when `output_len < 32`.
pub fn hash(input_data: &[u8], output_len: usize) -> Vec<u8> {
    let mut h = DiscoHash::new(output_len);
    h.write(input_data);
    h.sum()
}

/// Derives longer keys given an input key.
///
/// Panics when `input_key.len() < 16`.
pub fn derive_keys(input_key: &[u8], output_len: usize) -> Vec<u8> {
    assert!(input_key.len() >= 16);

    let mut s = Strobe::new(b"DiscoKDF", SecParam::B128);
    s.ad(input_key, false);
    let mut buf = vec![0u8; output_len];
    s.prf(&mut buf, false);
    buf
}

/// Returns an authenticated message in cleartext (not encrypted). You can later verify via the
/// [`verify_integrity`](fn.verify_integrity.html) function that the message has not been modified.
///
/// Panics when `key.len() < 16`.
pub fn protect_integrity(key: &[u8], plaintext: Vec<u8>) -> AuthPlaintext {
    assert!(key.len() >= 16);

    let mut s = Strobe::new(b"DiscoMAC", SecParam::B128);
    s.ad(key, false);
    s.ad(&plaintext, false);
    let mut mac = vec![0u8; TAG_LEN];
    s.send_mac(&mut mac, false);

    AuthPlaintext { pt: plaintext, mac }
}

/// Unwraps an [`AuthPlaintext`](struct.AuthPlaintext.html) object and checks the MAC. On success,
/// returns the underlying plaintext. On error, returns [`AuthError`](struct.AuthError.html).
///
/// Panics when `key.len() < 16`.
pub fn verify_integrity(key: &[u8], input: AuthPlaintext) -> Result<Vec<u8>, AuthError> {
    assert!(key.len() >= 16);

    let AuthPlaintext { pt, mut mac } = input;
    let mut s = Strobe::new(b"DiscoMAC", SecParam::B128);
    s.ad(key, false);
    s.ad(&pt, false);

    match s.recv_mac(&mut mac, false) {
        Ok(_) => Ok(pt),
        Err(ae) => Err(ae),
    }
}

/// Encrypts and MACs a plaintext message with a key of any size greater than 128 bits (16 bytes).
pub fn encrypt(key: &[u8], mut plaintext: Vec<u8>) -> AuthCiphertext {
    assert!(key.len() >= 16);

    let mut s = Strobe::new(b"DiscoAEAD", SecParam::B128);

    // Absorb the key
    s.ad(key, false);

    // Generate 192-bit nonce and absorb it
    let mut rng = thread_rng();
    let mut nonce = vec![0u8; NONCE_LEN];
    rng.fill_bytes(nonce.as_mut_slice());
    s.ad(&nonce, false);

    s.send_enc(&mut plaintext, false);
    let mut mac = vec![0u8; TAG_LEN];
    s.send_mac(&mut mac, false);

    AuthCiphertext {
        mac,
        nonce,
        ct: plaintext,
    }
}

/// Decrypts and checks the MAC of an [`AuthCiphertext`](struct.AuthCiphertext.html) object, given
/// a key of any size greater than 128 bits (16 bytes).
pub fn decrypt(key: &[u8], ciphertext: AuthCiphertext) -> Result<Vec<u8>, AuthError> {
    assert!(key.len() >= 16);

    let AuthCiphertext {
        mut mac,
        nonce,
        mut ct,
    } = ciphertext;
    let mut s = Strobe::new(b"DiscoAEAD", SecParam::B128);

    // Absorb the key and nonce
    s.ad(&key, false);
    s.ad(&nonce, false);

    s.recv_enc(&mut ct, false);
    match s.recv_mac(&mut mac, false) {
        Ok(_) => Ok(ct),
        Err(ae) => Err(ae),
    }
}