81 lines
1.9 KiB
C++
81 lines
1.9 KiB
C++
/*
|
|
* This file is part of the Flowee project
|
|
* Copyright (C) 2014 The Bitcoin Core developers
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef FLOWEE_CRYPTO_COMMON_H
|
|
#define FLOWEE_CRYPTO_COMMON_H
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include "config/flowee-config.h"
|
|
#endif
|
|
|
|
#include <cstdint>
|
|
|
|
#include "compat/endian.h"
|
|
|
|
uint16_t static inline ReadLE16(const unsigned char* ptr)
|
|
{
|
|
return le16toh(*((uint16_t*)ptr));
|
|
}
|
|
|
|
uint32_t static inline ReadLE32(const unsigned char* ptr)
|
|
{
|
|
return le32toh(*((uint32_t*)ptr));
|
|
}
|
|
|
|
uint64_t static inline ReadLE64(const unsigned char* ptr)
|
|
{
|
|
return le64toh(*((uint64_t*)ptr));
|
|
}
|
|
|
|
void static inline WriteLE16(unsigned char* ptr, uint16_t x)
|
|
{
|
|
*((uint16_t*)ptr) = htole16(x);
|
|
}
|
|
|
|
void static inline WriteLE32(unsigned char* ptr, uint32_t x)
|
|
{
|
|
*((uint32_t*)ptr) = htole32(x);
|
|
}
|
|
|
|
void static inline WriteLE64(unsigned char* ptr, uint64_t x)
|
|
{
|
|
*((uint64_t*)ptr) = htole64(x);
|
|
}
|
|
|
|
uint32_t static inline ReadBE32(const unsigned char* ptr)
|
|
{
|
|
return be32toh(*((uint32_t*)ptr));
|
|
}
|
|
|
|
uint64_t static inline ReadBE64(const unsigned char* ptr)
|
|
{
|
|
return be64toh(*((uint64_t*)ptr));
|
|
}
|
|
|
|
void static inline WriteBE32(unsigned char* ptr, uint32_t x)
|
|
{
|
|
*((uint32_t*)ptr) = htobe32(x);
|
|
}
|
|
|
|
void static inline WriteBE64(unsigned char* ptr, uint64_t x)
|
|
{
|
|
*((uint64_t*)ptr) = htobe64(x);
|
|
}
|
|
|
|
#endif
|