Botan 3.5.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
15// clang-format off
16namespace frp256v1 {
17
18class Params final : public EllipticCurveParameters<
19 "F1FD178C0B3AD58F10126DE8CE42435B3961ADBCABC8CA6DE8FCF353D86E9C03",
20 "F1FD178C0B3AD58F10126DE8CE42435B3961ADBCABC8CA6DE8FCF353D86E9C00",
21 "EE353FCA5428A9300D4ABA754A44C00FDFEC0C9AE4B1A1803075ED967B7BB73F",
22 "F1FD178C0B3AD58F10126DE8CE42435B53DC67E140D2BF941FFDD459C6D655E1",
23 "B6B3D4C356C139EB31183D4749D423958C27D2DCAF98B70164C97A2DD98F5CFF",
24 "6142E0F7C8B204911F9271F0F3ECEF8C2701C307E8E4C9E183115A1554062CFB"> {
25};
26
27class Curve final : public EllipticCurve<Params> {};
28
29}
30
31// clang-format on
32
33} // namespace
34
35std::shared_ptr<const PrimeOrderCurve> PCurveInstance::frp256v1() {
37}
38
39} // namespace Botan::PCurve
static std::shared_ptr< const PrimeOrderCurve > frp256v1()
Definition pcurves.cpp:68
static std::shared_ptr< const PrimeOrderCurve > instance()
int(* final)(unsigned char *, CTX *)