Botan 3.11.0
Crypto and TLS for C&
pcurves_frp256v1.cpp
Go to the documentation of this file.
1/*
2* (C) 2024 Jack Lloyd
3*
4* Botan is released under the Simplified BSD License (see license.txt)
5*/
6
7#include <botan/internal/pcurves_instance.h>
8
9#include <botan/internal/pcurves_wrap.h>
10
11namespace Botan::PCurve {
12
13namespace {
14
15namespace frp256v1 {
16
17// clang-format off
18
19class Params final : public EllipticCurveParameters<
20 "F1FD178C0B3AD58F10126DE8CE42435B3961ADBCABC8CA6DE8FCF353D86E9C03",
21 "F1FD178C0B3AD58F10126DE8CE42435B3961ADBCABC8CA6DE8FCF353D86E9C00",
22 "EE353FCA5428A9300D4ABA754A44C00FDFEC0C9AE4B1A1803075ED967B7BB73F",
23 "F1FD178C0B3AD58F10126DE8CE42435B53DC67E140D2BF941FFDD459C6D655E1",
24 "B6B3D4C356C139EB31183D4749D423958C27D2DCAF98B70164C97A2DD98F5CFF",
25 "6142E0F7C8B204911F9271F0F3ECEF8C2701C307E8E4C9E183115A1554062CFB"> {
26};
27
28// clang-format on
29
30class Curve final : public EllipticCurve<Params> {};
31
32} // namespace frp256v1
33
34} // namespace
35
36std::shared_ptr<const PrimeOrderCurve> PCurveInstance::frp256v1() {
38}
39
40} // namespace Botan::PCurve
static std::shared_ptr< const PrimeOrderCurve > instance()