zcash-patched-for-explorer/src/zcash/util.h

12 lines
316 B
C
Raw Normal View History

#ifndef ZC_UTIL_H_
#define ZC_UTIL_H_
#include <vector>
#include <cstdint>
std::vector<unsigned char> convertIntToVectorLE(const uint64_t val_int);
2016-06-28 09:08:50 -07:00
std::vector<bool> convertBytesVectorToVector(const std::vector<unsigned char>& bytes);
uint64_t convertVectorToInt(const std::vector<bool>& v);
#endif // ZC_UTIL_H_