2020-06-04 22:46:18 +04:30
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2022-08-25 17:56:34 +02:00
|
|
|
* Copyright (c) 2022, David Tuin <davidot@serenityos.org>
|
2025-04-25 20:54:45 +02:00
|
|
|
* Copyright (c) 2025, Altomani Gianluca <altomanigianluca@gmail.com>
|
2020-06-04 22:46:18 +04:30
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-04 22:46:18 +04:30
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <LibCrypto/BigInt/UnsignedBigInteger.h>
|
|
|
|
|
|
|
|
|
|
namespace Crypto {
|
|
|
|
|
|
|
|
|
|
struct SignedDivisionResult;
|
|
|
|
|
|
|
|
|
|
class SignedBigInteger {
|
|
|
|
|
public:
|
2022-11-14 18:20:59 +00:00
|
|
|
template<Signed T>
|
2022-10-17 00:06:11 +02:00
|
|
|
SignedBigInteger(T value)
|
2025-04-25 20:54:45 +02:00
|
|
|
: SignedBigInteger(static_cast<i64>(value))
|
2020-06-04 22:46:18 +04:30
|
|
|
{
|
|
|
|
|
}
|
2025-04-25 20:54:45 +02:00
|
|
|
SignedBigInteger(UnsignedBigInteger&& unsigned_data, bool sign);
|
|
|
|
|
SignedBigInteger(u8 const* ptr, size_t length);
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
explicit SignedBigInteger(UnsignedBigInteger const& unsigned_data);
|
2022-08-25 23:37:09 +02:00
|
|
|
explicit SignedBigInteger(double value);
|
2025-04-25 20:54:45 +02:00
|
|
|
explicit SignedBigInteger(i64 value);
|
2022-08-25 23:37:09 +02:00
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
SignedBigInteger(SignedBigInteger const&);
|
|
|
|
|
SignedBigInteger& operator=(SignedBigInteger const&);
|
2022-08-26 00:49:50 +02:00
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
SignedBigInteger();
|
|
|
|
|
~SignedBigInteger();
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
[[nodiscard]] static SignedBigInteger import_data(StringView data) { return import_data(reinterpret_cast<u8 const*>(data.characters_without_null_termination()), data.length()); }
|
|
|
|
|
[[nodiscard]] static SignedBigInteger import_data(u8 const* ptr, size_t length) { return SignedBigInteger(ptr, length); }
|
|
|
|
|
|
|
|
|
|
size_t export_data(Bytes) const;
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2024-01-12 21:34:23 +00:00
|
|
|
[[nodiscard]] static ErrorOr<SignedBigInteger> from_base(u16 N, StringView str);
|
2023-01-13 11:40:04 -05:00
|
|
|
[[nodiscard]] ErrorOr<String> to_base(u16 N) const;
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] u64 to_u64() const;
|
2022-08-25 17:56:34 +02:00
|
|
|
[[nodiscard]] double to_double(UnsignedBigInteger::RoundingMode rounding_mode = UnsignedBigInteger::RoundingMode::IEEERoundAndTiesToEvenMantissa) const;
|
2021-06-14 02:02:53 +03:00
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
[[nodiscard]] UnsignedBigInteger unsigned_value() const;
|
2022-10-22 00:15:42 +01:00
|
|
|
[[nodiscard]] bool is_positive() const { return !is_negative() && !is_zero(); }
|
2025-04-25 20:54:45 +02:00
|
|
|
[[nodiscard]] bool is_negative() const;
|
|
|
|
|
[[nodiscard]] bool is_zero() const;
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
void negate();
|
|
|
|
|
void set_to_0();
|
|
|
|
|
void set_to(i64 other);
|
|
|
|
|
void set_to(SignedBigInteger const& other);
|
2022-02-06 13:17:34 +00:00
|
|
|
|
2025-04-25 20:54:45 +02:00
|
|
|
[[nodiscard]] size_t byte_length() const;
|
2022-01-04 17:00:53 +01:00
|
|
|
|
|
|
|
|
[[nodiscard]] SignedBigInteger plus(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger minus(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger bitwise_or(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger bitwise_and(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger bitwise_xor(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger bitwise_not() const;
|
2025-04-25 20:54:45 +02:00
|
|
|
[[nodiscard]] ErrorOr<SignedBigInteger> shift_left(size_t num_bits) const;
|
2024-03-18 00:40:03 +01:00
|
|
|
[[nodiscard]] SignedBigInteger shift_right(size_t num_bits) const;
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] SignedBigInteger multiplied_by(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedDivisionResult divided_by(SignedBigInteger const& divisor) const;
|
2025-04-26 11:17:32 +02:00
|
|
|
[[nodiscard]] SignedBigInteger pow(u32 exponent) const;
|
2025-03-19 10:31:39 +13:00
|
|
|
[[nodiscard]] ErrorOr<SignedBigInteger> mod_power_of_two(size_t power_of_two) const;
|
2025-02-19 02:20:30 +13:00
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] SignedBigInteger plus(UnsignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger minus(UnsignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger multiplied_by(UnsignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedDivisionResult divided_by(UnsignedBigInteger const& divisor) const;
|
|
|
|
|
|
2022-01-04 16:33:33 +01:00
|
|
|
[[nodiscard]] SignedBigInteger negated_value() const;
|
|
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] u32 hash() const;
|
2021-06-08 23:43:44 +03:00
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] bool operator==(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator!=(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator<(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator<=(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator>(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator>=(SignedBigInteger const& other) const;
|
|
|
|
|
|
|
|
|
|
[[nodiscard]] bool operator==(UnsignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator!=(UnsignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator<(UnsignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] bool operator>(UnsignedBigInteger const& other) const;
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2022-10-23 16:46:35 +01:00
|
|
|
[[nodiscard]] UnsignedBigInteger::CompareResult compare_to_double(double) const;
|
2022-08-19 23:45:36 +02:00
|
|
|
|
2020-06-04 22:46:18 +04:30
|
|
|
private:
|
2025-04-25 20:54:45 +02:00
|
|
|
mp_int m_mp {};
|
|
|
|
|
mutable Optional<u32> m_hash {};
|
2020-06-04 22:46:18 +04:30
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct SignedDivisionResult {
|
|
|
|
|
Crypto::SignedBigInteger quotient;
|
|
|
|
|
Crypto::SignedBigInteger remainder;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-17 12:17:40 -05:00
|
|
|
template<>
|
|
|
|
|
struct AK::Formatter<Crypto::SignedBigInteger> : AK::Formatter<Crypto::UnsignedBigInteger> {
|
|
|
|
|
ErrorOr<void> format(FormatBuilder&, Crypto::SignedBigInteger const&);
|
|
|
|
|
};
|
|
|
|
|
|
2020-06-04 22:46:18 +04:30
|
|
|
inline Crypto::SignedBigInteger
|
2022-04-01 20:58:27 +03:00
|
|
|
operator""_sbigint(char const* string, size_t length)
|
2020-06-04 22:46:18 +04:30
|
|
|
{
|
2024-01-12 21:34:23 +00:00
|
|
|
return MUST(Crypto::SignedBigInteger::from_base(10, { string, length }));
|
2020-06-04 22:46:18 +04:30
|
|
|
}
|