premiere-libtorrent/include/libtorrent/aux_/win_crypto_provider.hpp

143 lines
4.1 KiB
C++

/*
Copyright (c) 2016, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the distribution.
* Neither the name of the author nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef TORRENT_WIN_CRYPTO_PROVIDER_HPP
#define TORRENT_WIN_CRYPTO_PROVIDER_HPP
#include "libtorrent/config.hpp"
#include "libtorrent/error_code.hpp"
#include "libtorrent/aux_/throw.hpp"
#include "libtorrent/aux_/disable_warnings_push.hpp"
#include <windows.h>
#include <wincrypt.h>
#include "libtorrent/aux_/disable_warnings_pop.hpp"
namespace libtorrent { namespace aux {
inline HCRYPTPROV crypt_acquire_provider(DWORD provider_type)
{
HCRYPTPROV ret;
if (CryptAcquireContext(&ret, nullptr, nullptr, provider_type
, CRYPT_VERIFYCONTEXT) == false)
{
throw_ex<system_error>(error_code(GetLastError(), system_category()));
}
return ret;
}
inline void crypt_gen_random(span<char> buffer)
{
static HCRYPTPROV provider = crypt_acquire_provider(PROV_RSA_FULL);
if (!CryptGenRandom(provider, int(buffer.size())
, reinterpret_cast<BYTE*>(buffer.data())))
{
throw_ex<system_error>(error_code(GetLastError(), system_category()));
}
}
template <ALG_ID AlgId, DWORD ProviderType>
struct crypt_hash
{
crypt_hash() { m_hash = create(); }
crypt_hash(crypt_hash const& h) { m_hash = duplicate(h); }
~crypt_hash() { CryptDestroyHash(m_hash); }
crypt_hash& crypt_hash::operator=(crypt_hash const& h)
{
if (this == &h) return *this;
HCRYPTHASH temp = duplicate(h);
CryptDestroyHash(m_hash);
m_hash = temp;
return *this;
}
void reset()
{
HCRYPTHASH temp = create();
CryptDestroyHash(m_hash);
m_hash = temp;
}
void update(span<char const> data)
{
if (CryptHashData(m_hash, reinterpret_cast<BYTE const*>(data.data()), int(data.size()), 0) == false)
{
throw_ex<system_error>(error_code(GetLastError(), system_category()));
}
}
void get_hash(char *digest, std::size_t digest_size)
{
DWORD size = DWORD(digest_size);
if (CryptGetHashParam(m_hash, HP_HASHVAL
, reinterpret_cast<BYTE*>(digest), &size, 0) == false)
{
throw_ex<system_error>(error_code(GetLastError(), system_category()));
}
TORRENT_ASSERT(size == DWORD(digest_size));
}
private:
HCRYPTHASH create()
{
HCRYPTHASH ret;
if (CryptCreateHash(get_provider(), AlgId, 0, 0, &ret) == false)
{
throw_ex<system_error>(error_code(GetLastError(), system_category()));
}
return ret;
}
HCRYPTHASH duplicate(crypt_hash const& h)
{
HCRYPTHASH ret;
if (CryptDuplicateHash(h.m_hash, 0, 0, &ret) == false)
{
throw_ex<system_error>(error_code(GetLastError(), system_category()));
}
return ret;
}
HCRYPTPROV get_provider()
{
static HCRYPTPROV provider = crypt_acquire_provider(ProviderType);
return provider;
}
HCRYPTHASH m_hash;
};
} // namespace aux
} // namespace libtorrent
#endif