feat(big): add SBigSub

This commit is contained in:
fallenoak 2023-02-01 21:29:16 -06:00
parent 6e62f0a604
commit 5d875631a6
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
5 changed files with 146 additions and 0 deletions

View file

@ -31,6 +31,8 @@ void SetOne(BigBuffer& buffer);
void SetZero(BigBuffer& buffer);
void Sub(BigBuffer& a, const BigBuffer& b, const BigBuffer& c);
void ToBinary(TSGrowableArray<uint8_t>& output, const BigBuffer& buffer);
#endif