chacha20.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * ChaCha20 256-bit cipher algorithm, RFC7539
  3. *
  4. * Copyright (C) 2015 Martin Willi
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. */
  11. #include <linux/kernel.h>
  12. #include <linux/export.h>
  13. #include <linux/bitops.h>
  14. #include <linux/cryptohash.h>
  15. #include <asm/unaligned.h>
  16. #include <crypto/chacha20.h>
  17. void chacha20_block(u32 *state, u8 *stream)
  18. {
  19. u32 x[16];
  20. int i;
  21. for (i = 0; i < ARRAY_SIZE(x); i++)
  22. x[i] = state[i];
  23. for (i = 0; i < 20; i += 2) {
  24. x[0] += x[4]; x[12] = rol32(x[12] ^ x[0], 16);
  25. x[1] += x[5]; x[13] = rol32(x[13] ^ x[1], 16);
  26. x[2] += x[6]; x[14] = rol32(x[14] ^ x[2], 16);
  27. x[3] += x[7]; x[15] = rol32(x[15] ^ x[3], 16);
  28. x[8] += x[12]; x[4] = rol32(x[4] ^ x[8], 12);
  29. x[9] += x[13]; x[5] = rol32(x[5] ^ x[9], 12);
  30. x[10] += x[14]; x[6] = rol32(x[6] ^ x[10], 12);
  31. x[11] += x[15]; x[7] = rol32(x[7] ^ x[11], 12);
  32. x[0] += x[4]; x[12] = rol32(x[12] ^ x[0], 8);
  33. x[1] += x[5]; x[13] = rol32(x[13] ^ x[1], 8);
  34. x[2] += x[6]; x[14] = rol32(x[14] ^ x[2], 8);
  35. x[3] += x[7]; x[15] = rol32(x[15] ^ x[3], 8);
  36. x[8] += x[12]; x[4] = rol32(x[4] ^ x[8], 7);
  37. x[9] += x[13]; x[5] = rol32(x[5] ^ x[9], 7);
  38. x[10] += x[14]; x[6] = rol32(x[6] ^ x[10], 7);
  39. x[11] += x[15]; x[7] = rol32(x[7] ^ x[11], 7);
  40. x[0] += x[5]; x[15] = rol32(x[15] ^ x[0], 16);
  41. x[1] += x[6]; x[12] = rol32(x[12] ^ x[1], 16);
  42. x[2] += x[7]; x[13] = rol32(x[13] ^ x[2], 16);
  43. x[3] += x[4]; x[14] = rol32(x[14] ^ x[3], 16);
  44. x[10] += x[15]; x[5] = rol32(x[5] ^ x[10], 12);
  45. x[11] += x[12]; x[6] = rol32(x[6] ^ x[11], 12);
  46. x[8] += x[13]; x[7] = rol32(x[7] ^ x[8], 12);
  47. x[9] += x[14]; x[4] = rol32(x[4] ^ x[9], 12);
  48. x[0] += x[5]; x[15] = rol32(x[15] ^ x[0], 8);
  49. x[1] += x[6]; x[12] = rol32(x[12] ^ x[1], 8);
  50. x[2] += x[7]; x[13] = rol32(x[13] ^ x[2], 8);
  51. x[3] += x[4]; x[14] = rol32(x[14] ^ x[3], 8);
  52. x[10] += x[15]; x[5] = rol32(x[5] ^ x[10], 7);
  53. x[11] += x[12]; x[6] = rol32(x[6] ^ x[11], 7);
  54. x[8] += x[13]; x[7] = rol32(x[7] ^ x[8], 7);
  55. x[9] += x[14]; x[4] = rol32(x[4] ^ x[9], 7);
  56. }
  57. for (i = 0; i < ARRAY_SIZE(x); i++)
  58. put_unaligned_le32(x[i] + state[i], &stream[i * sizeof(u32)]);
  59. state[12]++;
  60. }
  61. EXPORT_SYMBOL(chacha20_block);