salsa20_glue.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. /*
  2. * Glue code for optimized assembly version of Salsa20.
  3. *
  4. * Copyright (c) 2007 Tan Swee Heng <thesweeheng@gmail.com>
  5. *
  6. * The assembly codes are public domain assembly codes written by Daniel. J.
  7. * Bernstein <djb@cr.yp.to>. The codes are modified to include indentation
  8. * and to remove extraneous comments and functions that are not needed.
  9. * - i586 version, renamed as salsa20-i586-asm_32.S
  10. * available from <http://cr.yp.to/snuffle/salsa20/x86-pm/salsa20.s>
  11. * - x86-64 version, renamed as salsa20-x86_64-asm_64.S
  12. * available from <http://cr.yp.to/snuffle/salsa20/amd64-3/salsa20.s>
  13. *
  14. * This program is free software; you can redistribute it and/or modify it
  15. * under the terms of the GNU General Public License as published by the Free
  16. * Software Foundation; either version 2 of the License, or (at your option)
  17. * any later version.
  18. *
  19. */
  20. #include <crypto/algapi.h>
  21. #include <linux/module.h>
  22. #include <linux/crypto.h>
  23. #define SALSA20_IV_SIZE 8U
  24. #define SALSA20_MIN_KEY_SIZE 16U
  25. #define SALSA20_MAX_KEY_SIZE 32U
  26. struct salsa20_ctx
  27. {
  28. u32 input[16];
  29. };
  30. asmlinkage void salsa20_keysetup(struct salsa20_ctx *ctx, const u8 *k,
  31. u32 keysize, u32 ivsize);
  32. asmlinkage void salsa20_ivsetup(struct salsa20_ctx *ctx, const u8 *iv);
  33. asmlinkage void salsa20_encrypt_bytes(struct salsa20_ctx *ctx,
  34. const u8 *src, u8 *dst, u32 bytes);
  35. static int setkey(struct crypto_tfm *tfm, const u8 *key,
  36. unsigned int keysize)
  37. {
  38. struct salsa20_ctx *ctx = crypto_tfm_ctx(tfm);
  39. salsa20_keysetup(ctx, key, keysize*8, SALSA20_IV_SIZE*8);
  40. return 0;
  41. }
  42. static int encrypt(struct blkcipher_desc *desc,
  43. struct scatterlist *dst, struct scatterlist *src,
  44. unsigned int nbytes)
  45. {
  46. struct blkcipher_walk walk;
  47. struct crypto_blkcipher *tfm = desc->tfm;
  48. struct salsa20_ctx *ctx = crypto_blkcipher_ctx(tfm);
  49. int err;
  50. blkcipher_walk_init(&walk, dst, src, nbytes);
  51. err = blkcipher_walk_virt_block(desc, &walk, 64);
  52. salsa20_ivsetup(ctx, walk.iv);
  53. while (walk.nbytes >= 64) {
  54. salsa20_encrypt_bytes(ctx, walk.src.virt.addr,
  55. walk.dst.virt.addr,
  56. walk.nbytes - (walk.nbytes % 64));
  57. err = blkcipher_walk_done(desc, &walk, walk.nbytes % 64);
  58. }
  59. if (walk.nbytes) {
  60. salsa20_encrypt_bytes(ctx, walk.src.virt.addr,
  61. walk.dst.virt.addr, walk.nbytes);
  62. err = blkcipher_walk_done(desc, &walk, 0);
  63. }
  64. return err;
  65. }
  66. static struct crypto_alg alg = {
  67. .cra_name = "salsa20",
  68. .cra_driver_name = "salsa20-asm",
  69. .cra_priority = 200,
  70. .cra_flags = CRYPTO_ALG_TYPE_BLKCIPHER,
  71. .cra_type = &crypto_blkcipher_type,
  72. .cra_blocksize = 1,
  73. .cra_ctxsize = sizeof(struct salsa20_ctx),
  74. .cra_alignmask = 3,
  75. .cra_module = THIS_MODULE,
  76. .cra_u = {
  77. .blkcipher = {
  78. .setkey = setkey,
  79. .encrypt = encrypt,
  80. .decrypt = encrypt,
  81. .min_keysize = SALSA20_MIN_KEY_SIZE,
  82. .max_keysize = SALSA20_MAX_KEY_SIZE,
  83. .ivsize = SALSA20_IV_SIZE,
  84. }
  85. }
  86. };
  87. static int __init init(void)
  88. {
  89. return crypto_register_alg(&alg);
  90. }
  91. static void __exit fini(void)
  92. {
  93. crypto_unregister_alg(&alg);
  94. }
  95. module_init(init);
  96. module_exit(fini);
  97. MODULE_LICENSE("GPL");
  98. MODULE_DESCRIPTION ("Salsa20 stream cipher algorithm (optimized assembly version)");
  99. MODULE_ALIAS_CRYPTO("salsa20");
  100. MODULE_ALIAS_CRYPTO("salsa20-asm");