sysendian.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*-
  2. * Copyright 2007-2009 Colin Percival
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * This file was originally written by Colin Percival as part of the Tarsnap
  27. * online backup system.
  28. */
  29. #ifndef _SYSENDIAN_H_
  30. #define _SYSENDIAN_H_
  31. #include "scrypt_platform.h"
  32. /* If we don't have be64enc, the <sys/endian.h> we have isn't usable. */
  33. #if !HAVE_DECL_BE64ENC
  34. #undef HAVE_SYS_ENDIAN_H
  35. #endif
  36. #ifdef HAVE_SYS_ENDIAN_H
  37. #include <sys/endian.h>
  38. #else
  39. #include <stdint.h>
  40. static inline uint32_t
  41. be32dec(const void *pp)
  42. {
  43. const uint8_t *p = (uint8_t const *)pp;
  44. return ((uint32_t)(p[3]) + ((uint32_t)(p[2]) << 8) +
  45. ((uint32_t)(p[1]) << 16) + ((uint32_t)(p[0]) << 24));
  46. }
  47. static inline void
  48. be32enc(void *pp, uint32_t x)
  49. {
  50. uint8_t * p = (uint8_t *)pp;
  51. p[3] = x & 0xff;
  52. p[2] = (x >> 8) & 0xff;
  53. p[1] = (x >> 16) & 0xff;
  54. p[0] = (x >> 24) & 0xff;
  55. }
  56. static inline uint64_t
  57. be64dec(const void *pp)
  58. {
  59. const uint8_t *p = (uint8_t const *)pp;
  60. return ((uint64_t)(p[7]) + ((uint64_t)(p[6]) << 8) +
  61. ((uint64_t)(p[5]) << 16) + ((uint64_t)(p[4]) << 24) +
  62. ((uint64_t)(p[3]) << 32) + ((uint64_t)(p[2]) << 40) +
  63. ((uint64_t)(p[1]) << 48) + ((uint64_t)(p[0]) << 56));
  64. }
  65. static inline void
  66. be64enc(void *pp, uint64_t x)
  67. {
  68. uint8_t * p = (uint8_t *)pp;
  69. p[7] = x & 0xff;
  70. p[6] = (x >> 8) & 0xff;
  71. p[5] = (x >> 16) & 0xff;
  72. p[4] = (x >> 24) & 0xff;
  73. p[3] = (x >> 32) & 0xff;
  74. p[2] = (x >> 40) & 0xff;
  75. p[1] = (x >> 48) & 0xff;
  76. p[0] = (x >> 56) & 0xff;
  77. }
  78. static inline uint32_t
  79. le32dec(const void *pp)
  80. {
  81. const uint8_t *p = (uint8_t const *)pp;
  82. return ((uint32_t)(p[0]) + ((uint32_t)(p[1]) << 8) +
  83. ((uint32_t)(p[2]) << 16) + ((uint32_t)(p[3]) << 24));
  84. }
  85. static inline void
  86. le32enc(void *pp, uint32_t x)
  87. {
  88. uint8_t * p = (uint8_t *)pp;
  89. p[0] = x & 0xff;
  90. p[1] = (x >> 8) & 0xff;
  91. p[2] = (x >> 16) & 0xff;
  92. p[3] = (x >> 24) & 0xff;
  93. }
  94. static inline uint64_t
  95. le64dec(const void *pp)
  96. {
  97. const uint8_t *p = (uint8_t const *)pp;
  98. return ((uint64_t)(p[0]) + ((uint64_t)(p[1]) << 8) +
  99. ((uint64_t)(p[2]) << 16) + ((uint64_t)(p[3]) << 24) +
  100. ((uint64_t)(p[4]) << 32) + ((uint64_t)(p[5]) << 40) +
  101. ((uint64_t)(p[6]) << 48) + ((uint64_t)(p[7]) << 56));
  102. }
  103. static inline void
  104. le64enc(void *pp, uint64_t x)
  105. {
  106. uint8_t * p = (uint8_t *)pp;
  107. p[0] = x & 0xff;
  108. p[1] = (x >> 8) & 0xff;
  109. p[2] = (x >> 16) & 0xff;
  110. p[3] = (x >> 24) & 0xff;
  111. p[4] = (x >> 32) & 0xff;
  112. p[5] = (x >> 40) & 0xff;
  113. p[6] = (x >> 48) & 0xff;
  114. p[7] = (x >> 56) & 0xff;
  115. }
  116. #endif /* !HAVE_SYS_ENDIAN_H */
  117. #endif /* !_SYSENDIAN_H_ */