1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 16:07:45 +00:00

LibCrypto: Move JacobianPoint into the curve cpp file

This commit is contained in:
Michiel Visser 2023-11-10 16:19:23 +01:00 committed by Ali Mohammad Pur
parent 4efbb10a36
commit 6b5c6e7c03
2 changed files with 6 additions and 6 deletions

View file

@ -12,12 +12,6 @@
namespace Crypto::Curves {
struct JacobianPoint {
u256 x { 0u };
u256 y { 0u };
u256 z { 0u };
};
class SECP256r1 : public EllipticCurve {
public:
size_t key_size() override { return 1 + 2 * 32; }