bitcoin/src/crypto/common.h

86 lines
1.7 KiB
C
Raw Normal View History

// Copyright (c) 2014-2020 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_CRYPTO_COMMON_H
#define BITCOIN_CRYPTO_COMMON_H
#include <compat/endian.h>
#include <cstdint>
#include <cstring>
uint16_t static inline ReadLE16(const unsigned char* ptr)
{
2017-01-10 14:14:01 -08:00
uint16_t x;
2023-07-22 16:01:44 +02:00
memcpy(&x, ptr, 2);
2017-01-10 14:14:01 -08:00
return le16toh(x);
}
uint32_t static inline ReadLE32(const unsigned char* ptr)
{
2017-01-10 14:14:01 -08:00
uint32_t x;
2023-07-22 16:01:44 +02:00
memcpy(&x, ptr, 4);
2017-01-10 14:14:01 -08:00
return le32toh(x);
}
uint64_t static inline ReadLE64(const unsigned char* ptr)
{
2017-01-10 14:14:01 -08:00
uint64_t x;
2023-07-22 16:01:44 +02:00
memcpy(&x, ptr, 8);
2017-01-10 14:14:01 -08:00
return le64toh(x);
}
void static inline WriteLE16(unsigned char* ptr, uint16_t x)
{
2017-01-10 14:14:01 -08:00
uint16_t v = htole16(x);
2023-07-22 16:01:44 +02:00
memcpy(ptr, &v, 2);
}
void static inline WriteLE32(unsigned char* ptr, uint32_t x)
{
2017-01-10 14:14:01 -08:00
uint32_t v = htole32(x);
2023-07-22 16:01:44 +02:00
memcpy(ptr, &v, 4);
}
void static inline WriteLE64(unsigned char* ptr, uint64_t x)
{
2017-01-10 14:14:01 -08:00
uint64_t v = htole64(x);
2023-07-22 16:01:44 +02:00
memcpy(ptr, &v, 8);
}
uint16_t static inline ReadBE16(const unsigned char* ptr)
{
uint16_t x;
2023-07-22 16:01:44 +02:00
memcpy(&x, ptr, 2);
return be16toh(x);
}
uint32_t static inline ReadBE32(const unsigned char* ptr)
{
2017-01-10 14:14:01 -08:00
uint32_t x;
2023-07-22 16:01:44 +02:00
memcpy(&x, ptr, 4);
2017-01-10 14:14:01 -08:00
return be32toh(x);
}
uint64_t static inline ReadBE64(const unsigned char* ptr)
{
2017-01-10 14:14:01 -08:00
uint64_t x;
2023-07-22 16:01:44 +02:00
memcpy(&x, ptr, 8);
2017-01-10 14:14:01 -08:00
return be64toh(x);
}
void static inline WriteBE32(unsigned char* ptr, uint32_t x)
{
2017-01-10 14:14:01 -08:00
uint32_t v = htobe32(x);
2023-07-22 16:01:44 +02:00
memcpy(ptr, &v, 4);
}
void static inline WriteBE64(unsigned char* ptr, uint64_t x)
{
2017-01-10 14:14:01 -08:00
uint64_t v = htobe64(x);
2023-07-22 16:01:44 +02:00
memcpy(ptr, &v, 8);
}
#endif // BITCOIN_CRYPTO_COMMON_H