rename core -> toxcore
This commit is contained in:
15
solanaceae/toxcore/tox_interface.cpp
Normal file
15
solanaceae/toxcore/tox_interface.cpp
Normal file
@@ -0,0 +1,15 @@
|
||||
#include "./tox_interface.hpp"
|
||||
|
||||
#include "./utils.hpp"
|
||||
|
||||
std::string ToxI_raw::toxSelfGetAddressStr(void) {
|
||||
// TODO: cache
|
||||
return bin2hex(toxSelfGetAddress());
|
||||
}
|
||||
|
||||
std::vector<uint8_t> ToxI_raw::toxHash(const std::vector<uint8_t>& data) {
|
||||
std::vector<uint8_t> hash(TOX_HASH_LENGTH);
|
||||
tox_hash(hash.data(), data.data(), data.size()); // TODO: return value?
|
||||
return hash;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user