feat(big): add SBigShl

This commit is contained in:
fallenoak 2023-02-03 16:20:07 -06:00
parent 60edadfe06
commit 25c2ad06f1
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
5 changed files with 212 additions and 0 deletions

View file

@ -37,6 +37,8 @@ void SetOne(BigBuffer& buffer);
void SetZero(BigBuffer& buffer);
void Shl(BigBuffer& a, const BigBuffer& b, uint32_t shift);
void Shr(BigBuffer& a, const BigBuffer& b, uint32_t shift);
void Square(BigBuffer& a, const BigBuffer& b, BigStack& stack);