feat(big): add SBigSquare

This commit is contained in:
fallenoak 2023-02-03 08:15:06 -06:00
parent f01c906aa1
commit 4a1b6a0f19
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
5 changed files with 176 additions and 0 deletions

View file

@ -37,6 +37,8 @@ void SetOne(BigBuffer& buffer);
void SetZero(BigBuffer& buffer);
void Square(BigBuffer& a, const BigBuffer& b, BigStack& stack);
void Sub(BigBuffer& a, const BigBuffer& b, const BigBuffer& c);
void ToBinary(TSGrowableArray<uint8_t>& output, const BigBuffer& buffer);