2011-11-04 16:56:25 +11:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-11-04 16:56:25 +11:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-11-04 16:56:25 +11:00
|
|
|
*
|
2012-04-23 13:06:41 +10:00
|
|
|
* Copyright 2011 Danny Robson <danny@nerdcruft.net>
|
2011-11-04 16:56:25 +11:00
|
|
|
*/
|
|
|
|
|
2016-04-05 11:06:01 +10:00
|
|
|
#include "./crc.hpp"
|
2011-11-04 16:56:25 +11:00
|
|
|
|
2017-05-12 15:56:41 +10:00
|
|
|
#include "../bitwise.hpp"
|
2016-04-05 11:06:01 +10:00
|
|
|
#include "../debug.hpp"
|
2011-11-04 16:56:25 +11:00
|
|
|
|
2017-01-25 16:12:12 +11:00
|
|
|
#include <array>
|
|
|
|
|
2017-02-13 17:13:46 +11:00
|
|
|
using util::hash::crc;
|
2016-06-20 16:48:17 +10:00
|
|
|
|
2016-06-17 15:46:11 +10:00
|
|
|
|
2016-06-17 15:56:14 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
2017-02-13 17:13:46 +11:00
|
|
|
const std::array<DigestT,256>
|
2017-02-14 19:47:12 +11:00
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::s_table = crc<DigestT,Generator,Initial,Final,ReflectIn,ReflectOut>::table ();
|
2016-06-20 16:48:17 +10:00
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::crc () noexcept
|
2016-06-20 16:48:17 +10:00
|
|
|
{
|
2017-01-25 16:12:12 +11:00
|
|
|
reset ();
|
2016-06-17 15:46:11 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-17 15:56:14 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
2016-06-20 16:48:17 +10:00
|
|
|
void
|
2017-02-14 19:47:12 +11:00
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::reset (void) noexcept
|
2016-06-20 16:48:17 +10:00
|
|
|
{
|
2017-02-14 19:47:12 +11:00
|
|
|
m_digest = Initial;
|
2017-01-25 16:12:12 +11:00
|
|
|
}
|
2011-11-04 16:56:25 +11:00
|
|
|
|
|
|
|
|
2017-01-25 16:12:12 +11:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
2017-01-25 16:12:12 +11:00
|
|
|
void
|
2017-02-14 19:47:12 +11:00
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::update (const uint8_t *restrict first,
|
|
|
|
const uint8_t *restrict last) noexcept
|
2017-01-25 16:12:12 +11:00
|
|
|
{
|
|
|
|
CHECK_LE (first, last);
|
2011-11-04 16:56:25 +11:00
|
|
|
|
2017-01-25 16:12:12 +11:00
|
|
|
for (auto cursor = first; cursor != last; ++cursor) {
|
2017-02-14 19:47:12 +11:00
|
|
|
if (ReflectIn)
|
|
|
|
m_digest = s_table[*cursor ^ (m_digest & 0xFFu)] ^ (m_digest >> 8u);
|
|
|
|
else {
|
|
|
|
constexpr auto shift = sizeof (DigestT) * 8u - 8u;
|
|
|
|
m_digest = (m_digest << 8u) ^ s_table[(m_digest >> shift) ^ *cursor];
|
|
|
|
}
|
2011-11-04 16:56:25 +11:00
|
|
|
}
|
2017-01-25 16:12:12 +11:00
|
|
|
}
|
2011-11-04 16:56:25 +11:00
|
|
|
|
|
|
|
|
2017-01-25 16:12:12 +11:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
2017-01-25 16:12:12 +11:00
|
|
|
void
|
2017-02-14 19:47:12 +11:00
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::update (const void *restrict _data, size_t len) noexcept
|
2017-01-25 16:12:12 +11:00
|
|
|
{
|
|
|
|
auto data = reinterpret_cast<const uint8_t *restrict> (_data);
|
|
|
|
return update(data, data + len);
|
2011-11-04 16:56:25 +11:00
|
|
|
}
|
2016-06-20 16:48:17 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
2016-06-20 16:48:17 +10:00
|
|
|
void
|
2017-02-14 19:47:12 +11:00
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::finish (void)
|
2017-01-25 16:12:12 +11:00
|
|
|
{
|
|
|
|
;
|
|
|
|
}
|
2016-06-20 16:48:17 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
2017-02-13 17:13:46 +11:00
|
|
|
DigestT
|
2017-02-14 19:47:12 +11:00
|
|
|
crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::digest (void) const
|
2017-01-25 16:12:12 +11:00
|
|
|
{
|
2017-02-14 19:47:12 +11:00
|
|
|
return (ReflectIn != ReflectOut ? util::reverse (m_digest) : m_digest) ^ Final;
|
2017-02-13 17:13:46 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-02-14 19:47:12 +11:00
|
|
|
template <
|
|
|
|
typename DigestT,
|
|
|
|
DigestT Generator,
|
|
|
|
DigestT Initial,
|
|
|
|
DigestT Final,
|
|
|
|
bool ReflectIn,
|
|
|
|
bool ReflectOut
|
|
|
|
>
|
|
|
|
constexpr
|
2017-02-13 17:13:46 +11:00
|
|
|
std::array<DigestT,256>
|
2017-02-14 19:47:12 +11:00
|
|
|
util::hash::crc<
|
|
|
|
DigestT,Generator,Initial,Final,ReflectIn,ReflectOut
|
|
|
|
>::table (void)
|
2017-02-13 17:13:46 +11:00
|
|
|
{
|
2017-02-20 18:01:40 +11:00
|
|
|
// We want to use a std::array here for a (slight) safety advantage, but
|
|
|
|
// it means that we have to use calls to array::data instead of operator[]
|
|
|
|
// to retain constexpr.
|
2017-02-14 19:47:12 +11:00
|
|
|
std::array<digest_t,256> values {};
|
2017-02-13 17:13:46 +11:00
|
|
|
|
2017-02-14 19:47:12 +11:00
|
|
|
if (ReflectIn) {
|
|
|
|
constexpr auto gen = util::reverse (Generator);
|
2017-02-13 17:13:46 +11:00
|
|
|
|
2017-02-14 19:47:12 +11:00
|
|
|
for (int i = 0; i < 256; ++i) {
|
|
|
|
digest_t c = i;
|
2017-02-13 17:13:46 +11:00
|
|
|
|
2017-02-14 19:47:12 +11:00
|
|
|
for (int k = 0; k < 8; ++k) {
|
|
|
|
if (c & 1)
|
|
|
|
c = gen ^ (c >> 1);
|
|
|
|
else
|
|
|
|
c >>= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
values.data ()[i] = c;
|
2017-02-13 17:13:46 +11:00
|
|
|
}
|
2017-02-14 19:47:12 +11:00
|
|
|
} else {
|
|
|
|
constexpr DigestT shift = sizeof (DigestT) * 8u - 8u;
|
|
|
|
constexpr DigestT highbit = DigestT(1) << (sizeof (DigestT) * 8u - 1u);
|
|
|
|
|
|
|
|
for (int idx = 0; idx < 256; ++idx) {
|
|
|
|
DigestT c = DigestT (idx) << shift;
|
2017-02-13 17:13:46 +11:00
|
|
|
|
2017-02-14 19:47:12 +11:00
|
|
|
for (int i = 0; i < 8; ++i) {
|
|
|
|
if (c & highbit)
|
|
|
|
c = (c << DigestT (1)) ^ Generator;
|
|
|
|
else
|
|
|
|
c <<= DigestT(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
values.data()[idx] = c;
|
|
|
|
}
|
2017-02-13 17:13:46 +11:00
|
|
|
}
|
|
|
|
|
2017-02-14 19:47:12 +11:00
|
|
|
return values;
|
2017-02-13 17:13:46 +11:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2017-02-14 19:47:12 +11:00
|
|
|
template class util::hash::crc<uint32_t, 0x04C11DB7, 0xffffffff, 0xffffffff, true, true >; // crc32
|
|
|
|
template class util::hash::crc<uint32_t, 0x04C11DB7, 0xffffffff, 0xffffffff, false, false>; // crc32b
|
|
|
|
template class util::hash::crc<uint32_t, 0x1edc6f41, 0xffffffff, 0xffffffff, true, true>; // crc32c
|
|
|
|
template class util::hash::crc<uint32_t, 0xa833982b, 0xffffffff, 0xffffffff, true, true>; // crc32d
|
|
|
|
|
|
|
|
template class util::hash::crc<uint32_t, 0x04C11DB7, 0x00000000, 0x00000000, false, false>; // ogg
|
|
|
|
|
|
|
|
template class util::hash::crc<uint64_t, 0x42f0e1eba9ea3693, 0, 0, false, false>; // crc64
|