LibCrypto: Add LCM functionality to UnsignedBigInteger

This commit is contained in:
devgianlu 2025-06-01 14:31:15 +02:00 committed by Shannon Booth
commit d55f759bbb
Notes: github-actions[bot] 2025-06-25 00:23:14 +00:00
2 changed files with 8 additions and 0 deletions

View file

@ -80,6 +80,7 @@ public:
[[nodiscard]] UnsignedDivisionResult divided_by(UnsignedBigInteger const& divisor) const;
[[nodiscard]] UnsignedBigInteger pow(u32 exponent) const;
[[nodiscard]] UnsignedBigInteger gcd(UnsignedBigInteger const& other) const;
[[nodiscard]] UnsignedBigInteger lcm(UnsignedBigInteger const& other) const;
[[nodiscard]] u32 hash() const;