xlnt/source/detail/crypto/sha.cpp

111 lines
3.0 KiB
C++
Raw Normal View History

// Copyright (c) 2017 Thomas Fussell
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, WRISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE
//
// @license: http://www.opensource.org/licenses/mit-license.php
// @author: see AUTHORS file
2017-04-11 23:08:16 +08:00
#include <array>
#include <cstring>
2017-04-11 23:08:16 +08:00
#include <iomanip>
#include <string>
#include <sstream>
#include <detail/crypto/sha.hpp>
2017-04-11 23:08:16 +08:00
extern "C" {
2017-04-11 23:08:16 +08:00
extern void sha1_hash(const uint8_t *message, size_t len, uint32_t hash[5]);
extern void sha512_hash(const uint8_t *message, size_t len, uint64_t hash[8]);
2017-04-11 23:08:16 +08:00
}
2017-04-14 09:59:09 +08:00
namespace {
#ifdef _MSC_VER
inline std::uint32_t byteswap(std::uint32_t i)
{
return _byteswap_ulong(i);
}
inline std::uint64_t byteswap(std::uint64_t i)
{
return _byteswap_uint64(i);
}
#else
inline std::uint32_t byteswap(std::uint32_t i)
{
return __builtin_bswap32(i);
}
inline std::uint64_t byteswap(std::uint64_t i)
{
return __builtin_bswap64(i);
}
#endif
}
namespace xlnt {
namespace detail {
2017-04-11 23:08:16 +08:00
std::vector<std::uint8_t> sha1(const std::vector<std::uint8_t> &data)
2017-04-11 23:08:16 +08:00
{
std::array<std::uint32_t, 5> hash;
sha1_hash(data.data(), data.size(), hash.data());
2017-04-11 23:08:16 +08:00
std::vector<std::uint8_t> result(20, 0);
auto result_iterator = result.begin();
2017-04-11 23:08:16 +08:00
for (auto i : hash)
2017-04-11 23:08:16 +08:00
{
2017-04-14 09:59:09 +08:00
auto swapped = byteswap(i);
std::copy(
reinterpret_cast<std::uint8_t *>(&swapped),
reinterpret_cast<std::uint8_t *>(&swapped + 1),
&*result_iterator);
result_iterator += 4;
2017-04-11 23:08:16 +08:00
}
return result;
2017-04-11 23:08:16 +08:00
}
std::vector<std::uint8_t> sha512(const std::vector<std::uint8_t> &data)
2017-04-11 23:08:16 +08:00
{
std::array<std::uint64_t, 8> hash;
sha512_hash(data.data(), data.size(), hash.data());
2017-04-11 23:08:16 +08:00
std::vector<std::uint8_t> result(64, 0);
auto result_iterator = result.begin();
2017-04-11 23:08:16 +08:00
for (auto i : hash)
2017-04-11 23:08:16 +08:00
{
2017-04-14 09:59:09 +08:00
auto swapped = byteswap(i);
std::copy(
reinterpret_cast<std::uint8_t *>(&swapped),
reinterpret_cast<std::uint8_t *>(&swapped + 1),
&*result_iterator);
result_iterator += 8;
2017-04-11 23:08:16 +08:00
}
return result;
}
} // namespace detail
} // namespace xlnt