2016-08-26 01:07:16 +02:00
|
|
|
#ifndef TORRENT_SHA512_HPP_INCLUDED
|
|
|
|
#define TORRENT_SHA512_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "libtorrent/config.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
|
2017-04-12 19:00:57 +02:00
|
|
|
namespace libtorrent {
|
2016-08-26 01:07:16 +02:00
|
|
|
|
|
|
|
struct sha512_ctx
|
|
|
|
{
|
|
|
|
std::uint64_t length, state[8];
|
2017-01-13 14:44:08 +01:00
|
|
|
std::size_t curlen;
|
2016-08-26 01:07:16 +02:00
|
|
|
std::uint8_t buf[128];
|
|
|
|
};
|
|
|
|
|
|
|
|
TORRENT_EXTRA_EXPORT int SHA512_init(sha512_ctx* context);
|
|
|
|
TORRENT_EXTRA_EXPORT int SHA512_update(sha512_ctx* context
|
2017-01-13 14:44:08 +01:00
|
|
|
, std::uint8_t const* data, std::size_t len);
|
2016-08-26 01:07:16 +02:00
|
|
|
TORRENT_EXTRA_EXPORT int SHA512_final(std::uint8_t* digest, sha512_ctx* context);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|