您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /* crypto1.c
  2. This program is free software; you can redistribute it and/or
  3. modify it under the terms of the GNU General Public License
  4. as published by the Free Software Foundation; either version 2
  5. of the License, or (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program; if not, write to the Free Software
  12. Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  13. MA 02110-1301, US
  14. Copyright (C) 2008-2008 bla <blapost@gmail.com>
  15. */
  16. #include "crapto1.h"
  17. #include <stdlib.h>
  18. #define SWAPENDIAN(x)\
  19. (x = (x >> 8 & 0xff00ff) | (x & 0xff00ff) << 8, x = x >> 16 | x << 16)
  20. struct Crypto1State *crypto1_create(uint64_t key) {
  21. struct Crypto1State *s = malloc(sizeof(*s));
  22. int i;
  23. for (i = 47; s && i > 0; i -= 2) {
  24. s->odd = s->odd << 1 | BIT(key, (i - 1) ^ 7);
  25. s->even = s->even << 1 | BIT(key, i ^ 7);
  26. }
  27. return s;
  28. }
  29. void crypto1_destroy(struct Crypto1State *state)
  30. {
  31. free(state);
  32. }
  33. void crypto1_get_lfsr(struct Crypto1State *state, uint64_t *lfsr)
  34. {
  35. int i;
  36. for (*lfsr = 0, i = 23; i >= 0; --i) {
  37. *lfsr = *lfsr << 1 | BIT(state->odd, i ^ 3);
  38. *lfsr = *lfsr << 1 | BIT(state->even, i ^ 3);
  39. }
  40. }
  41. uint8_t crypto1_bit(struct Crypto1State *s, uint8_t in, int is_encrypted)
  42. {
  43. uint32_t feedin;
  44. uint8_t ret = filter(s->odd);
  45. feedin = ret & !!is_encrypted;
  46. feedin ^= !!in;
  47. feedin ^= LF_POLY_ODD & s->odd;
  48. feedin ^= LF_POLY_EVEN & s->even;
  49. s->even = s->even << 1 | parity(feedin);
  50. s->odd ^= (s->odd ^= s->even, s->even ^= s->odd);
  51. return ret;
  52. }
  53. uint8_t crypto1_byte(struct Crypto1State *s, uint8_t in, int is_encrypted)
  54. {
  55. uint8_t i, ret = 0;
  56. for (i = 0; i < 8; ++i)
  57. ret |= crypto1_bit(s, BIT(in, i), is_encrypted) << i;
  58. return ret;
  59. }
  60. uint32_t crypto1_word(struct Crypto1State *s, uint32_t in, int is_encrypted)
  61. {
  62. uint32_t i, ret = 0;
  63. for (i = 0; i < 32; ++i)
  64. ret |= crypto1_bit(s, BEBIT(in, i), is_encrypted) << (i ^ 24);
  65. return ret;
  66. }
  67. /* prng_successor
  68. * helper used to obscure the keystream during authentication
  69. */
  70. uint32_t prng_successor(uint32_t x, uint32_t n)
  71. {
  72. SWAPENDIAN(x);
  73. while (n--)
  74. x = x >> 1 | (x >> 16 ^ x >> 18 ^ x >> 19 ^ x >> 21) << 31;
  75. return SWAPENDIAN(x);
  76. }