Add our own version of <endian.h> which includes implementations of the

unaligned encoding / decoding functions which Linux lacks.
This commit is contained in:
Dag-Erling Smørgrav 2014-10-30 12:48:21 +00:00 committed by des
parent 1fbf2cf156
commit f7bdd342dc
8 changed files with 161 additions and 47 deletions

View File

@ -6,6 +6,7 @@ cryb_HEADERS = \
bitwise.h \
cpe.h \
digest.h \
endian.h \
hash.h \
hmac.h \
hmac_sha1.h \

154
include/cryb/endian.h Normal file
View File

@ -0,0 +1,154 @@
/*-
* Copyright (c) 2014 Dag-Erling Smørgrav
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef CRYB_ENDIAN_H_INCLUDED
#define CRYB_ENDIAN_H_INCLUDED
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
#ifdef HAVE_ENDIAN_H
#include <endian.h>
#endif
#ifndef HAVE_BE32ENC
#define be32enc cryb_be32enc
#endif
#ifndef HAVE_BE32DEC
#define be32dec cryb_be32dec
#endif
#ifndef HAVE_BE64ENC
#define be64enc cryb_be64enc
#endif
#ifndef HAVE_BE64DEC
#define be64dec cryb_be64dec
#endif
#ifndef HAVE_LE32ENC
#define le32enc cryb_le32enc
#endif
#ifndef HAVE_LE32DEC
#define le32dec cryb_le32dec
#endif
#ifndef HAVE_LE64ENC
#define le64enc cryb_le64enc
#endif
#ifndef HAVE_LE64DEC
#define le64dec cryb_le64dec
#endif
static inline void
cryb_be32enc(void *p, uint32_t u32)
{
((uint8_t *)p)[3] = u32 & 0xff;
((uint8_t *)p)[2] = (u32 >> 8) & 0xff;
((uint8_t *)p)[1] = (u32 >> 16) & 0xff;
((uint8_t *)p)[0] = (u32 >> 24) & 0xff;
}
static inline uint32_t
cryb_be32dec(const void *p)
{
return ((uint32_t)((uint8_t *)p)[3] |
(uint32_t)((uint8_t *)p)[2] << 8 |
(uint32_t)((uint8_t *)p)[1] << 16 |
(uint32_t)((uint8_t *)p)[0] << 24);
}
static inline void
cryb_be64enc(void *p, uint64_t u64)
{
((uint8_t *)p)[7] = u64 & 0xff;
((uint8_t *)p)[6] = (u64 >> 8) & 0xff;
((uint8_t *)p)[5] = (u64 >> 16) & 0xff;
((uint8_t *)p)[4] = (u64 >> 24) & 0xff;
((uint8_t *)p)[3] = (u64 >> 32) & 0xff;
((uint8_t *)p)[2] = (u64 >> 40) & 0xff;
((uint8_t *)p)[1] = (u64 >> 48) & 0xff;
((uint8_t *)p)[0] = (u64 >> 56) & 0xff;
}
static inline uint64_t
cryb_be64dec(const void *p)
{
return ((uint64_t)((uint8_t *)p)[7] |
(uint64_t)((uint8_t *)p)[6] << 8 |
(uint64_t)((uint8_t *)p)[5] << 16 |
(uint64_t)((uint8_t *)p)[4] << 24 |
(uint64_t)((uint8_t *)p)[3] << 32 |
(uint64_t)((uint8_t *)p)[2] << 40 |
(uint64_t)((uint8_t *)p)[1] << 48 |
(uint64_t)((uint8_t *)p)[0] << 56);
}
static inline void
cryb_le32enc(void *p, uint32_t u32)
{
((uint8_t *)p)[0] = u32 & 0xff;
((uint8_t *)p)[1] = (u32 >> 8) & 0xff;
((uint8_t *)p)[2] = (u32 >> 16) & 0xff;
((uint8_t *)p)[3] = (u32 >> 24) & 0xff;
}
static inline uint32_t
cryb_le32dec(const void *p)
{
return ((uint32_t)((uint8_t *)p)[0] |
(uint32_t)((uint8_t *)p)[1] << 8 |
(uint32_t)((uint8_t *)p)[2] << 16 |
(uint32_t)((uint8_t *)p)[3] << 24);
}
static inline void
cryb_le64enc(void *p, uint64_t u64)
{
((uint8_t *)p)[0] = u64 & 0xff;
((uint8_t *)p)[1] = (u64 >> 8) & 0xff;
((uint8_t *)p)[2] = (u64 >> 16) & 0xff;
((uint8_t *)p)[3] = (u64 >> 24) & 0xff;
((uint8_t *)p)[4] = (u64 >> 32) & 0xff;
((uint8_t *)p)[5] = (u64 >> 40) & 0xff;
((uint8_t *)p)[6] = (u64 >> 48) & 0xff;
((uint8_t *)p)[7] = (u64 >> 56) & 0xff;
}
static inline uint64_t
cryb_le64dec(const void *p)
{
return ((uint64_t)((uint8_t *)p)[0] |
(uint64_t)((uint8_t *)p)[1] << 8 |
(uint64_t)((uint8_t *)p)[2] << 16 |
(uint64_t)((uint8_t *)p)[3] << 24 |
(uint64_t)((uint8_t *)p)[4] << 32 |
(uint64_t)((uint8_t *)p)[5] << 40 |
(uint64_t)((uint8_t *)p)[6] << 48 |
(uint64_t)((uint8_t *)p)[7] << 56);
}
#endif

View File

@ -35,18 +35,10 @@
#include "cryb/impl.h"
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
#ifdef HAVE_ENDIAN_H
#define _BSD_SOURCE
#include <endian.h>
#endif
#include <stdint.h>
#include <string.h>
#include <cryb/endian.h>
#include <cryb/md4.h>
/*

View File

@ -30,19 +30,11 @@
#include "cryb/impl.h"
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
#ifdef HAVE_ENDIAN_H
#define _BSD_SOURCE
#include <endian.h>
#endif
#include <stdint.h>
#include <string.h>
#include <cryb/bitwise.h>
#include <cryb/endian.h>
#include <cryb/md5.h>
/* initial state */

View File

@ -26,18 +26,10 @@
#include "cryb/impl.h"
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
#ifdef HAVE_ENDIAN_H
#define _BSD_SOURCE
#include <endian.h>
#endif
#include <stdint.h>
#include <string.h>
#include <cryb/endian.h>
#include <cryb/sha224.h>
/*

View File

@ -26,18 +26,10 @@
#include "cryb/impl.h"
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
#ifdef HAVE_ENDIAN_H
#define _BSD_SOURCE
#include <endian.h>
#endif
#include <stdint.h>
#include <string.h>
#include <cryb/endian.h>
#include <cryb/sha256.h>
/*

View File

@ -29,9 +29,8 @@
#include "cryb/impl.h"
#include <sys/types.h>
#include <errno.h>
#include <stdint.h>
#include <string.h>
#include <cryb/ctype.h>

View File

@ -29,19 +29,11 @@
#include "cryb/impl.h"
#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#endif
#ifdef HAVE_ENDIAN_H
#define _BSD_SOURCE
#include <endian.h>
#endif
#include <stdint.h>
#include <string.h>
#include <cryb/bitwise.h>
#include <cryb/endian.h>
#include <cryb/hash.h>
/*