sha_common.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Cryptographic API.
  3. *
  4. * s390 generic implementation of the SHA Secure Hash Algorithms.
  5. *
  6. * Copyright IBM Corp. 2007
  7. * Author(s): Jan Glauber (jang@de.ibm.com)
  8. *
  9. * This program is free software; you can redistribute it and/or modify it
  10. * under the terms of the GNU General Public License as published by the Free
  11. * Software Foundation; either version 2 of the License, or (at your option)
  12. * any later version.
  13. *
  14. */
  15. #include <crypto/internal/hash.h>
  16. #include <linux/module.h>
  17. #include "sha.h"
  18. #include "crypt_s390.h"
  19. int s390_sha_update(struct shash_desc *desc, const u8 *data, unsigned int len)
  20. {
  21. struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
  22. unsigned int bsize = crypto_shash_blocksize(desc->tfm);
  23. unsigned int index;
  24. int ret;
  25. /* how much is already in the buffer? */
  26. index = ctx->count & (bsize - 1);
  27. ctx->count += len;
  28. if ((index + len) < bsize)
  29. goto store;
  30. /* process one stored block */
  31. if (index) {
  32. memcpy(ctx->buf + index, data, bsize - index);
  33. ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, bsize);
  34. BUG_ON(ret != bsize);
  35. data += bsize - index;
  36. len -= bsize - index;
  37. index = 0;
  38. }
  39. /* process as many blocks as possible */
  40. if (len >= bsize) {
  41. ret = crypt_s390_kimd(ctx->func, ctx->state, data,
  42. len & ~(bsize - 1));
  43. BUG_ON(ret != (len & ~(bsize - 1)));
  44. data += ret;
  45. len -= ret;
  46. }
  47. store:
  48. if (len)
  49. memcpy(ctx->buf + index , data, len);
  50. return 0;
  51. }
  52. EXPORT_SYMBOL_GPL(s390_sha_update);
  53. int s390_sha_final(struct shash_desc *desc, u8 *out)
  54. {
  55. struct s390_sha_ctx *ctx = shash_desc_ctx(desc);
  56. unsigned int bsize = crypto_shash_blocksize(desc->tfm);
  57. u64 bits;
  58. unsigned int index, end, plen;
  59. int ret;
  60. /* SHA-512 uses 128 bit padding length */
  61. plen = (bsize > SHA256_BLOCK_SIZE) ? 16 : 8;
  62. /* must perform manual padding */
  63. index = ctx->count & (bsize - 1);
  64. end = (index < bsize - plen) ? bsize : (2 * bsize);
  65. /* start pad with 1 */
  66. ctx->buf[index] = 0x80;
  67. index++;
  68. /* pad with zeros */
  69. memset(ctx->buf + index, 0x00, end - index - 8);
  70. /*
  71. * Append message length. Well, SHA-512 wants a 128 bit length value,
  72. * nevertheless we use u64, should be enough for now...
  73. */
  74. bits = ctx->count * 8;
  75. memcpy(ctx->buf + end - 8, &bits, sizeof(bits));
  76. ret = crypt_s390_kimd(ctx->func, ctx->state, ctx->buf, end);
  77. BUG_ON(ret != end);
  78. /* copy digest to out */
  79. memcpy(out, ctx->state, crypto_shash_digestsize(desc->tfm));
  80. /* wipe context */
  81. memset(ctx, 0, sizeof *ctx);
  82. return 0;
  83. }
  84. EXPORT_SYMBOL_GPL(s390_sha_final);
  85. MODULE_LICENSE("GPL");
  86. MODULE_DESCRIPTION("s390 SHA cipher common functions");