feat(big): add Mul

This commit is contained in:
fallenoak 2023-01-29 22:59:28 -06:00 committed by GitHub
parent 33585cb36f
commit e74654800d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 75 additions and 0 deletions

View file

@ -16,6 +16,8 @@ void FromUnsigned(BigBuffer& buffer, uint32_t value);
uint64_t MakeLarge(uint32_t low, uint32_t high);
void Mul(BigBuffer& a, const BigBuffer& b, uint64_t c);
void ToBinary(TSGrowableArray<uint8_t>& output, const BigBuffer& buffer);
#endif