1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
12 #ifdef LTC_CHACHA20POLY1305_MODE
15 Set IV + counter data to the ChaCha20Poly1305 state and reset the context
16 @param st The ChaCha20Poly1305 state
17 @param iv The IV data to add
18 @param ivlen The length of the IV (must be 12 or 8)
19 @return CRYPT_OK on success
21 int chacha20poly1305_setiv(chacha20poly1305_state *st, const unsigned char *iv, unsigned long ivlen)
25 unsigned char polykey[32];
27 LTC_ARGCHK(st != NULL);
28 LTC_ARGCHK(iv != NULL);
29 LTC_ARGCHK(ivlen == 12 || ivlen == 8);
31 /* set IV for chacha20 */
34 if ((err = chacha_ivctr32(&st->chacha, iv, ivlen, 1)) != CRYPT_OK) return err;
38 if ((err = chacha_ivctr64(&st->chacha, iv, ivlen, 1)) != CRYPT_OK) return err;
41 /* copy chacha20 key to temporary state */
42 for(i = 0; i < 12; i++) tmp_st.input[i] = st->chacha.input[i];
47 if ((err = chacha_ivctr32(&tmp_st, iv, ivlen, 0)) != CRYPT_OK) return err;
51 if ((err = chacha_ivctr64(&tmp_st, iv, ivlen, 0)) != CRYPT_OK) return err;
53 /* (re)generate new poly1305 key */
54 if ((err = chacha_keystream(&tmp_st, polykey, 32)) != CRYPT_OK) return err;
55 /* (re)initialise poly1305 */
56 if ((err = poly1305_init(&st->poly, polykey, 32)) != CRYPT_OK) return err;
66 /* ref: $Format:%D$ */
67 /* git commit: $Format:%H$ */
68 /* commit time: $Format:%ai$ */