-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
akokoshn
committed
May 14, 2024
1 parent
cc48e2e
commit 7871a08
Showing
9 changed files
with
1,443 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
//---------------------------------------------------------------------------// | ||
// Copyright (c) 2020-2021 Mikhail Komarov <nemo@nil.foundation> | ||
// Copyright (c) 2020-2021 Ilias Khairullin <ilias@nil.foundation> | ||
// | ||
// MIT License | ||
// | ||
// 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, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
//---------------------------------------------------------------------------// | ||
|
||
#ifndef CRYPTO3_HASH_HASH_TO_CURVE_HPP | ||
#define CRYPTO3_HASH_HASH_TO_CURVE_HPP | ||
|
||
#include <nil/crypto3/hash/detail/h2c/h2c_suites.hpp> | ||
#include <nil/crypto3/hash/detail/h2c/h2c_m2c.hpp> | ||
#include <nil/crypto3/hash/detail/h2c/h2c_expand.hpp> | ||
|
||
#include <type_traits> | ||
|
||
#include <nil/crypto3/multiprecision/cpp_int.hpp> | ||
|
||
namespace nil { | ||
namespace crypto3 { | ||
namespace hashes { | ||
using namespace nil::crypto3::multiprecision; | ||
|
||
template<typename GroupType> | ||
struct ep_map { | ||
typedef h2c_suite<GroupType> suite_type; | ||
|
||
typedef typename suite_type::group_value_type group_value_type; | ||
typedef typename suite_type::field_value_type field_value_type; | ||
typedef typename suite_type::modular_type modular_type; | ||
typedef typename suite_type::modular_backend modular_backend; | ||
|
||
typedef nil::crypto3::multiprecision::modular_params<modular_backend> modular_params_type; | ||
|
||
typedef typename suite_type::hash_type hash_type; | ||
|
||
constexpr static std::size_t m = suite_type::m; | ||
constexpr static std::size_t L = suite_type::L; | ||
constexpr static std::size_t k = suite_type::k; | ||
constexpr static const modular_params_type p_modulus_params = suite_type::p; | ||
|
||
typedef expand_message_xmd<k, hash_type> expand_message_ro; | ||
// typedef expand_message_xof<k, hash_type> expand_message_nu; | ||
|
||
static_assert(m == 1, "underlying field has wrong extension"); | ||
|
||
template<typename InputType, typename DstType, | ||
typename = typename std::enable_if< | ||
std::is_same<std::uint8_t, typename InputType::value_type>::value && | ||
std::is_same<std::uint8_t, typename DstType::value_type>::value>::type> | ||
static inline group_value_type hash_to_curve(const InputType &msg, const DstType &dst) { | ||
auto u = hash_to_field<2, expand_message_ro>(msg, dst); | ||
group_value_type Q0 = map_to_curve<GroupType>::process(u[0]); | ||
group_value_type Q1 = map_to_curve<GroupType>::process(u[1]); | ||
return clear_cofactor(Q0 + Q1); | ||
} | ||
|
||
// template<typename InputType, typename = typename std::enable_if<std::is_same< | ||
// std::uint8_t, typename InputType::value_type>::value>::type> | ||
// static inline group_value_type encode_to_curve(const InputType &msg) { | ||
// auto u = hash_to_field<1>(msg); | ||
// group_value_type Q = map_to_curve(u[0]); | ||
// return clear_cofactor(Q); | ||
// } | ||
|
||
// private: | ||
template<std::size_t N, typename expand_message_type, typename InputType, typename DstType, | ||
typename = typename std::enable_if< | ||
std::is_same<std::uint8_t, typename InputType::value_type>::value && | ||
std::is_same<std::uint8_t, typename DstType::value_type>::value>::type> | ||
static inline std::array<field_value_type, N> hash_to_field(const InputType &msg, | ||
const DstType &dst) { | ||
std::array<std::uint8_t, N * m * L> uniform_bytes {0}; | ||
expand_message_type::process(N * m * L, msg, dst, uniform_bytes); | ||
|
||
cpp_int e; | ||
std::array<modular_type, m> coordinates; | ||
std::array<field_value_type, N> result; | ||
for (std::size_t i = 0; i < N; i++) { | ||
for (std::size_t j = 0; j < m; j++) { | ||
auto elm_offset = L * (j + i * m); | ||
import_bits(e, uniform_bytes.begin() + elm_offset, | ||
uniform_bytes.begin() + elm_offset + L); | ||
coordinates[j] = modular_type(e, p_modulus_params); | ||
} | ||
result[i] = field_value_type(coordinates[0]); | ||
} | ||
|
||
return result; | ||
} | ||
|
||
static inline group_value_type clear_cofactor(const group_value_type &R) { | ||
return R * suite_type::h_eff; | ||
} | ||
}; | ||
} // namespace hashes | ||
} // namespace crypto3 | ||
} // namespace nil | ||
|
||
#endif // CRYPTO3_HASH_HASH_TO_CURVE_HPP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
//---------------------------------------------------------------------------// | ||
// Copyright (c) 2020-2021 Mikhail Komarov <nemo@nil.foundation> | ||
// Copyright (c) 2020-2021 Ilias Khairullin <ilias@nil.foundation> | ||
// | ||
// MIT License | ||
// | ||
// 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, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
// SOFTWARE. | ||
//---------------------------------------------------------------------------// | ||
|
||
#ifndef CRYPTO3_HASH_HASH_TO_CURVE2_HPP | ||
#define CRYPTO3_HASH_HASH_TO_CURVE2_HPP | ||
|
||
#include <nil/crypto3/hash/detail/h2c/h2c_suites.hpp> | ||
#include <nil/crypto3/hash/detail/h2c/h2c_m2c.hpp> | ||
#include <nil/crypto3/hash/detail/h2c/h2c_expand.hpp> | ||
|
||
#include <type_traits> | ||
|
||
#include <nil/crypto3/multiprecision/cpp_int.hpp> | ||
|
||
namespace nil { | ||
namespace crypto3 { | ||
namespace hashes { | ||
using namespace nil::crypto3::multiprecision; | ||
|
||
template<typename GroupType> | ||
struct ep2_map { | ||
typedef h2c_suite<GroupType> suite_type; | ||
|
||
typedef typename suite_type::group_value_type group_value_type; | ||
typedef typename suite_type::field_value_type field_value_type; | ||
typedef typename suite_type::modular_type modular_type; | ||
typedef typename suite_type::modular_backend modular_backend; | ||
|
||
typedef nil::crypto3::multiprecision::modular_params<modular_backend> modular_params_type; | ||
|
||
typedef typename suite_type::hash_type hash_type; | ||
|
||
constexpr static std::size_t m = suite_type::m; | ||
constexpr static std::size_t L = suite_type::L; | ||
constexpr static std::size_t k = suite_type::k; | ||
|
||
typedef expand_message_xmd<k, hash_type> expand_message_ro; | ||
// typedef expand_message_xof<k, hash_type> expand_message_nu; | ||
constexpr static const modular_params_type p_modulus_params = suite_type::p; | ||
|
||
static_assert(m == 2, "underlying field has wrong extension"); | ||
|
||
template<typename InputType, typename DstType, | ||
typename = typename std::enable_if< | ||
std::is_same<std::uint8_t, typename InputType::value_type>::value && | ||
std::is_same<std::uint8_t, typename DstType::value_type>::value>::type> | ||
static inline group_value_type hash_to_curve(const InputType &msg, const DstType &dst) { | ||
auto u = hash_to_field<2, expand_message_ro>(msg, dst); | ||
group_value_type Q0 = map_to_curve<GroupType>::process(u[0]); | ||
group_value_type Q1 = map_to_curve<GroupType>::process(u[1]); | ||
return clear_cofactor(Q0 + Q1); | ||
} | ||
// private: | ||
template<std::size_t N, typename expand_message_type, typename InputType, typename DstType, | ||
typename = typename std::enable_if< | ||
std::is_same<std::uint8_t, typename InputType::value_type>::value && | ||
std::is_same<std::uint8_t, typename DstType::value_type>::value>::type> | ||
static inline std::array<field_value_type, N> hash_to_field(const InputType &msg, | ||
const DstType &dst) { | ||
std::array<std::uint8_t, N * m * L> uniform_bytes {0}; | ||
expand_message_type::process(N * m * L, msg, dst, uniform_bytes); | ||
|
||
cpp_int e; | ||
std::array<modular_type, m> coordinates; | ||
std::array<field_value_type, N> result; | ||
for (std::size_t i = 0; i < N; i++) { | ||
for (std::size_t j = 0; j < m; j++) { | ||
auto elm_offset = L * (j + i * m); | ||
import_bits(e, uniform_bytes.begin() + elm_offset, | ||
uniform_bytes.begin() + elm_offset + L); | ||
coordinates[j] = modular_type(e, p_modulus_params); | ||
} | ||
result[i] = field_value_type(coordinates[0], coordinates[1]); | ||
} | ||
|
||
return result; | ||
} | ||
|
||
static inline group_value_type clear_cofactor(const group_value_type &R) { | ||
return R * suite_type::h_eff; | ||
} | ||
}; | ||
} // namespace hashes | ||
} // namespace crypto3 | ||
} // namespace nil | ||
|
||
#endif // CCRYPTO3_HASH_HASH_TO_CURVE2_HPP |
Oops, something went wrong.