Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
tpruvot
GitHub Repository: tpruvot/cpuminer-multi
Path: blob/linux/yescrypt/sysendian.h
1201 views
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
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
37
#ifdef HAVE_SYS_ENDIAN_H
38
39
#include <sys/endian.h>
40
41
#else
42
43
#include <stdint.h>
44
45
46
47
static __inline uint64_t
48
be64dec(const void *pp)
49
{
50
const uint8_t *p = (uint8_t const *)pp;
51
52
return ((uint64_t)(p[7]) + ((uint64_t)(p[6]) << 8) +
53
((uint64_t)(p[5]) << 16) + ((uint64_t)(p[4]) << 24) +
54
((uint64_t)(p[3]) << 32) + ((uint64_t)(p[2]) << 40) +
55
((uint64_t)(p[1]) << 48) + ((uint64_t)(p[0]) << 56));
56
}
57
58
static __inline void
59
be64enc(void *pp, uint64_t x)
60
{
61
uint8_t * p = (uint8_t *)pp;
62
63
p[7] = x & 0xff;
64
p[6] = (x >> 8) & 0xff;
65
p[5] = (x >> 16) & 0xff;
66
p[4] = (x >> 24) & 0xff;
67
p[3] = (x >> 32) & 0xff;
68
p[2] = (x >> 40) & 0xff;
69
p[1] = (x >> 48) & 0xff;
70
p[0] = (x >> 56) & 0xff;
71
}
72
73
74
75
static __inline uint64_t
76
le64dec(const void *pp)
77
{
78
const uint8_t *p = (uint8_t const *)pp;
79
80
return ((uint64_t)(p[0]) + ((uint64_t)(p[1]) << 8) +
81
((uint64_t)(p[2]) << 16) + ((uint64_t)(p[3]) << 24) +
82
((uint64_t)(p[4]) << 32) + ((uint64_t)(p[5]) << 40) +
83
((uint64_t)(p[6]) << 48) + ((uint64_t)(p[7]) << 56));
84
}
85
86
static __inline void
87
le64enc(void *pp, uint64_t x)
88
{
89
uint8_t * p = (uint8_t *)pp;
90
91
p[0] = x & 0xff;
92
p[1] = (x >> 8) & 0xff;
93
p[2] = (x >> 16) & 0xff;
94
p[3] = (x >> 24) & 0xff;
95
p[4] = (x >> 32) & 0xff;
96
p[5] = (x >> 40) & 0xff;
97
p[6] = (x >> 48) & 0xff;
98
p[7] = (x >> 56) & 0xff;
99
}
100
101
102
static __inline uint32_t
103
be32dec(const void *pp)
104
{
105
const uint8_t *p = (uint8_t const *)pp;
106
107
return ((uint32_t)(p[3]) + ((uint32_t)(p[2]) << 8) +
108
((uint32_t)(p[1]) << 16) + ((uint32_t)(p[0]) << 24));
109
}
110
111
static __inline void
112
be32enc(void *pp, uint32_t x)
113
{
114
uint8_t * p = (uint8_t *)pp;
115
116
p[3] = x & 0xff;
117
p[2] = (x >> 8) & 0xff;
118
p[1] = (x >> 16) & 0xff;
119
p[0] = (x >> 24) & 0xff;
120
}
121
122
#endif /* !HAVE_SYS_ENDIAN_H */
123
124
#endif /* !_SYSENDIAN_H_ */
125
126