chacha.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Common values and helper functions for the ChaCha and XChaCha stream ciphers.
  4. *
  5. * XChaCha extends ChaCha's nonce to 192 bits, while provably retaining ChaCha's
  6. * security. Here they share the same key size, tfm context, and setkey
  7. * function; only their IV size and encrypt/decrypt function differ.
  8. *
  9. * The ChaCha paper specifies 20, 12, and 8-round variants. In general, it is
  10. * recommended to use the 20-round variant ChaCha20. However, the other
  11. * variants can be needed in some performance-sensitive scenarios. The generic
  12. * ChaCha code currently allows only the 20 and 12-round variants.
  13. */
  14. #ifndef _CRYPTO_CHACHA_H
  15. #define _CRYPTO_CHACHA_H
  16. #include <crypto/skcipher.h>
  17. #include <linux/types.h>
  18. #include <linux/crypto.h>
  19. /* 32-bit stream position, then 96-bit nonce (RFC7539 convention) */
  20. #define CHACHA_IV_SIZE 16
  21. #define CHACHA_KEY_SIZE 32
  22. #define CHACHA_BLOCK_SIZE 64
  23. /* 192-bit nonce, then 64-bit stream position */
  24. #define XCHACHA_IV_SIZE 32
  25. struct chacha_ctx {
  26. u32 key[8];
  27. int nrounds;
  28. };
  29. void chacha_block(u32 *state, u8 *stream, int nrounds);
  30. static inline void chacha20_block(u32 *state, u8 *stream)
  31. {
  32. chacha_block(state, stream, 20);
  33. }
  34. void hchacha_block(const u32 *in, u32 *out, int nrounds);
  35. void crypto_chacha_init(u32 *state, struct chacha_ctx *ctx, u8 *iv);
  36. int crypto_chacha20_setkey(struct crypto_skcipher *tfm, const u8 *key,
  37. unsigned int keysize);
  38. int crypto_chacha12_setkey(struct crypto_skcipher *tfm, const u8 *key,
  39. unsigned int keysize);
  40. int crypto_chacha_crypt(struct skcipher_request *req);
  41. int crypto_xchacha_crypt(struct skcipher_request *req);
  42. #endif /* _CRYPTO_CHACHA_H */