2018-01-14 17:17:34 +11:00
|
|
|
/*
|
2018-08-04 15:18:16 +10:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2018-01-14 17:17:34 +11:00
|
|
|
*
|
|
|
|
* Copyright 2017-2018 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "./salsa.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
std::array<uint8_t,64>
|
|
|
|
cruft::crypto::stream::salsa20 (const std::array<uint8_t,64> bytes) noexcept
|
|
|
|
{
|
2018-06-01 13:24:05 +10:00
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Wcast-align"
|
2018-01-14 17:17:34 +11:00
|
|
|
auto x = *reinterpret_cast<const std::array<uint32_t,16>*> (&bytes);
|
|
|
|
auto y = x;
|
|
|
|
|
|
|
|
for (auto &t: x)
|
2018-08-05 14:51:17 +10:00
|
|
|
t = cruft::ltoh (t);
|
2018-01-14 17:17:34 +11:00
|
|
|
|
|
|
|
for (int i = 0; i < 10; ++i)
|
|
|
|
x = salsa::doubleround (x);
|
|
|
|
|
|
|
|
for (size_t i = 0; i < std::size (y); ++i)
|
|
|
|
x[i] += y[i];
|
|
|
|
|
|
|
|
for (auto &t: x)
|
2018-08-05 14:51:17 +10:00
|
|
|
t = cruft::htol (t);
|
2018-01-14 17:17:34 +11:00
|
|
|
|
|
|
|
return *reinterpret_cast<std::array<uint8_t,64>*> (&x);
|
2018-06-01 13:24:05 +10:00
|
|
|
#pragma GCC diagnostic pop
|
2018-01-14 17:17:34 +11:00
|
|
|
}
|