cfb64enc.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /*
  2. * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /*
  10. * DES low level APIs are deprecated for public use, but still ok for internal
  11. * use.
  12. */
  13. #include "internal/deprecated.h"
  14. #include "des_local.h"
  15. /*
  16. * The input and output encrypted as though 64bit cfb mode is being used.
  17. * The extra state information to record how much of the 64bit block we have
  18. * used is contained in *num;
  19. */
  20. void DES_cfb64_encrypt(const unsigned char *in, unsigned char *out,
  21. long length, DES_key_schedule *schedule,
  22. DES_cblock *ivec, int *num, int enc)
  23. {
  24. register DES_LONG v0, v1;
  25. register long l = length;
  26. register int n = *num;
  27. DES_LONG ti[2];
  28. unsigned char *iv, c, cc;
  29. iv = &(*ivec)[0];
  30. if (enc) {
  31. while (l--) {
  32. if (n == 0) {
  33. c2l(iv, v0);
  34. ti[0] = v0;
  35. c2l(iv, v1);
  36. ti[1] = v1;
  37. DES_encrypt1(ti, schedule, DES_ENCRYPT);
  38. iv = &(*ivec)[0];
  39. v0 = ti[0];
  40. l2c(v0, iv);
  41. v0 = ti[1];
  42. l2c(v0, iv);
  43. iv = &(*ivec)[0];
  44. }
  45. c = *(in++) ^ iv[n];
  46. *(out++) = c;
  47. iv[n] = c;
  48. n = (n + 1) & 0x07;
  49. }
  50. } else {
  51. while (l--) {
  52. if (n == 0) {
  53. c2l(iv, v0);
  54. ti[0] = v0;
  55. c2l(iv, v1);
  56. ti[1] = v1;
  57. DES_encrypt1(ti, schedule, DES_ENCRYPT);
  58. iv = &(*ivec)[0];
  59. v0 = ti[0];
  60. l2c(v0, iv);
  61. v0 = ti[1];
  62. l2c(v0, iv);
  63. iv = &(*ivec)[0];
  64. }
  65. cc = *(in++);
  66. c = iv[n];
  67. iv[n] = cc;
  68. *(out++) = c ^ cc;
  69. n = (n + 1) & 0x07;
  70. }
  71. }
  72. v0 = v1 = ti[0] = ti[1] = c = cc = 0;
  73. *num = n;
  74. }