|
| 1 | +//! ChaCha20Poly1305 test vectors. |
| 2 | +//! |
| 3 | +//! From RFC 8439 Section 2.8.2: |
| 4 | +//! <https://tools.ietf.org/html/rfc8439#section-2.8.2> |
| 5 | +
|
| 6 | +use chacha20poly1305::aead::{Aead, NewAead}; |
| 7 | +use chacha20poly1305::aead::generic_array::GenericArray; |
| 8 | +use chacha20poly1305::ChaCha20Poly1305; |
| 9 | + |
| 10 | +const KEY: &[u8; 32] = &[ |
| 11 | + 0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f, |
| 12 | + 0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, |
| 13 | +]; |
| 14 | + |
| 15 | +const NONCE: &[u8; 12] = &[ |
| 16 | + 0x07, 0x00, 0x00, 0x00, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, |
| 17 | +]; |
| 18 | + |
| 19 | +const AAD: &[u8; 12] = &[ |
| 20 | + 0x50, 0x51, 0x52, 0x53, 0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, |
| 21 | +]; |
| 22 | + |
| 23 | +const PLAINTEXT: &[u8] = b"Ladies and Gentlemen of the class of '99: \ |
| 24 | + If I could offer you only one tip for the future, sunscreen would be it."; |
| 25 | + |
| 26 | +const CIPHERTEXT: &[u8] = &[ |
| 27 | + 0xd3, 0x1a, 0x8d, 0x34, 0x64, 0x8e, 0x60, 0xdb, 0x7b, 0x86, 0xaf, 0xbc, 0x53, 0xef, 0x7e, 0xc2, |
| 28 | + 0xa4, 0xad, 0xed, 0x51, 0x29, 0x6e, 0x08, 0xfe, 0xa9, 0xe2, 0xb5, 0xa7, 0x36, 0xee, 0x62, 0xd6, |
| 29 | + 0x3d, 0xbe, 0xa4, 0x5e, 0x8c, 0xa9, 0x67, 0x12, 0x82, 0xfa, 0xfb, 0x69, 0xda, 0x92, 0x72, 0x8b, |
| 30 | + 0x1a, 0x71, 0xde, 0x0a, 0x9e, 0x06, 0x0b, 0x29, 0x05, 0xd6, 0xa5, 0xb6, 0x7e, 0xcd, 0x3b, 0x36, |
| 31 | + 0x92, 0xdd, 0xbd, 0x7f, 0x2d, 0x77, 0x8b, 0x8c, 0x98, 0x03, 0xae, 0xe3, 0x28, 0x09, 0x1b, 0x58, |
| 32 | + 0xfa, 0xb3, 0x24, 0xe4, 0xfa, 0xd6, 0x75, 0x94, 0x55, 0x85, 0x80, 0x8b, 0x48, 0x31, 0xd7, 0xbc, |
| 33 | + 0x3f, 0xf4, 0xde, 0xf0, 0x8e, 0x4b, 0x7a, 0x9d, 0xe5, 0x76, 0xd2, 0x65, 0x86, 0xce, 0xc6, 0x4b, |
| 34 | + 0x61, 0x16, |
| 35 | +]; |
| 36 | + |
| 37 | +const TAG: &[u8] = &[ |
| 38 | + 0x1a, 0xe1, 0x0b, 0x59, 0x4f, 0x09, 0xe2, 0x6a, 0x7e, 0x90, 0x2e, 0xcb, 0xd0, 0x60, 0x06, 0x91, |
| 39 | +]; |
| 40 | + |
| 41 | +#[test] |
| 42 | +fn encrypt() { |
| 43 | + let key = GenericArray::from_slice(KEY); |
| 44 | + let nonce = GenericArray::from_slice(NONCE); |
| 45 | + |
| 46 | + let mut cipher = ChaCha20Poly1305::new(*key); |
| 47 | + let ciphertext = cipher.encrypt(AAD, nonce, PLAINTEXT).unwrap(); |
| 48 | + |
| 49 | + let tag_begins = ciphertext.len() - 16; |
| 50 | + assert_eq!(CIPHERTEXT, &ciphertext[..tag_begins]); |
| 51 | + assert_eq!(TAG, &ciphertext[tag_begins..]); |
| 52 | +} |
| 53 | + |
| 54 | +#[test] |
| 55 | +fn decrypt() { |
| 56 | + let key = GenericArray::from_slice(KEY); |
| 57 | + let nonce = GenericArray::from_slice(NONCE); |
| 58 | + |
| 59 | + let mut ciphertext = Vec::from(CIPHERTEXT); |
| 60 | + ciphertext.extend_from_slice(TAG); |
| 61 | + |
| 62 | + let mut cipher = ChaCha20Poly1305::new(*key); |
| 63 | + let plaintext = cipher.decrypt(AAD, nonce, &ciphertext).unwrap(); |
| 64 | + |
| 65 | + assert_eq!(PLAINTEXT, plaintext.as_slice()); |
| 66 | +} |
| 67 | + |
| 68 | +#[test] |
| 69 | +fn decrypt_modified() { |
| 70 | + let key = GenericArray::from_slice(KEY); |
| 71 | + let nonce = GenericArray::from_slice(NONCE); |
| 72 | + |
| 73 | + let mut ciphertext = Vec::from(CIPHERTEXT); |
| 74 | + ciphertext.extend_from_slice(TAG); |
| 75 | + |
| 76 | + // Tweak the first byte |
| 77 | + ciphertext[0] ^= 0xaa; |
| 78 | + |
| 79 | + let mut cipher = ChaCha20Poly1305::new(*key); |
| 80 | + assert!(cipher.decrypt(AAD, nonce, &ciphertext).is_err()); |
| 81 | +} |
0 commit comments