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>
|
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
|
|
|
|
|
|
2022-11-14 18:20:59 +00:00
|
|
|
#include <AK/Concepts.h>
|
2020-07-27 14:44:40 +02:00
|
|
|
#include <AK/Span.h>
|
2023-01-13 11:40:04 -05:00
|
|
|
#include <AK/String.h>
|
2020-06-04 22:46:18 +04:30
|
|
|
#include <LibCrypto/BigInt/UnsignedBigInteger.h>
|
|
|
|
|
|
|
|
|
|
namespace Crypto {
|
|
|
|
|
|
|
|
|
|
struct SignedDivisionResult;
|
|
|
|
|
|
|
|
|
|
class SignedBigInteger {
|
|
|
|
|
public:
|
2022-11-14 18:20:59 +00:00
|
|
|
template<Signed T>
|
|
|
|
|
requires(sizeof(T) <= sizeof(i32))
|
2022-10-17 00:06:11 +02:00
|
|
|
SignedBigInteger(T value)
|
2022-08-25 23:35:34 +02:00
|
|
|
: m_sign(value < 0)
|
|
|
|
|
, m_unsigned_data(abs(static_cast<i32>(value)))
|
2020-06-04 22:46:18 +04:30
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SignedBigInteger(UnsignedBigInteger&& unsigned_data, bool sign)
|
|
|
|
|
: m_sign(sign)
|
|
|
|
|
, m_unsigned_data(move(unsigned_data))
|
|
|
|
|
{
|
2022-02-06 13:17:34 +00:00
|
|
|
ensure_sign_is_valid();
|
2020-06-04 22:46:18 +04:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
explicit SignedBigInteger(UnsignedBigInteger unsigned_data)
|
|
|
|
|
: m_sign(false)
|
|
|
|
|
, m_unsigned_data(move(unsigned_data))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SignedBigInteger()
|
|
|
|
|
: m_sign(false)
|
|
|
|
|
, m_unsigned_data()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-25 23:37:09 +02:00
|
|
|
explicit SignedBigInteger(double value);
|
|
|
|
|
|
2022-08-26 00:49:50 +02:00
|
|
|
explicit SignedBigInteger(i64 value)
|
|
|
|
|
: m_sign(value < 0)
|
|
|
|
|
, m_unsigned_data(value < 0 ? static_cast<u64>(-(value + 1)) + 1 : static_cast<u64>(value))
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] static SignedBigInteger create_invalid()
|
2020-06-04 22:46:18 +04:30
|
|
|
{
|
|
|
|
|
return { UnsignedBigInteger::create_invalid(), false };
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] static SignedBigInteger import_data(StringView data) { return import_data((u8 const*)data.characters_without_null_termination(), data.length()); }
|
|
|
|
|
[[nodiscard]] static SignedBigInteger import_data(u8 const* ptr, size_t length);
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2020-07-31 13:33:14 +04:30
|
|
|
size_t export_data(Bytes, bool remove_leading_zeros = false) 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;
|
2023-12-16 17:49:34 +03:30
|
|
|
[[nodiscard]] ByteString to_base_deprecated(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
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] UnsignedBigInteger const& unsigned_value() const { return m_unsigned_data; }
|
|
|
|
|
[[nodiscard]] Vector<u32, STARTING_WORD_SIZE> const words() const { return m_unsigned_data.words(); }
|
2022-10-22 00:15:42 +01:00
|
|
|
[[nodiscard]] bool is_positive() const { return !is_negative() && !is_zero(); }
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] bool is_negative() const { return m_sign; }
|
2022-07-16 12:38:26 -04:00
|
|
|
[[nodiscard]] bool is_zero() const { return m_unsigned_data.is_zero(); }
|
2020-06-04 22:46:18 +04:30
|
|
|
|
2022-02-06 13:17:34 +00:00
|
|
|
void negate()
|
|
|
|
|
{
|
|
|
|
|
if (!m_unsigned_data.is_zero())
|
|
|
|
|
m_sign = !m_sign;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void set_to_0()
|
|
|
|
|
{
|
|
|
|
|
m_unsigned_data.set_to_0();
|
|
|
|
|
m_sign = false;
|
|
|
|
|
}
|
2020-06-04 22:46:18 +04:30
|
|
|
|
|
|
|
|
void set_to(i32 other)
|
|
|
|
|
{
|
|
|
|
|
m_unsigned_data.set_to((u32)other);
|
|
|
|
|
m_sign = other < 0;
|
|
|
|
|
}
|
2022-04-01 20:58:27 +03:00
|
|
|
void set_to(SignedBigInteger const& other)
|
2020-06-04 22:46:18 +04:30
|
|
|
{
|
|
|
|
|
m_unsigned_data.set_to(other.m_unsigned_data);
|
|
|
|
|
m_sign = other.m_sign;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void invalidate()
|
|
|
|
|
{
|
|
|
|
|
m_unsigned_data.invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] bool is_invalid() const { return m_unsigned_data.is_invalid(); }
|
2020-06-04 22:46:18 +04:30
|
|
|
|
|
|
|
|
// These get + 1 byte for the sign.
|
2022-01-04 17:00:53 +01:00
|
|
|
[[nodiscard]] size_t length() const { return m_unsigned_data.length() + 1; }
|
2023-07-07 22:48:11 -04:00
|
|
|
[[nodiscard]] size_t trimmed_length() const { return m_unsigned_data.trimmed_length() + 1; }
|
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;
|
|
|
|
|
[[nodiscard]] SignedBigInteger shift_left(size_t num_bits) const;
|
|
|
|
|
[[nodiscard]] SignedBigInteger multiplied_by(SignedBigInteger const& other) const;
|
|
|
|
|
[[nodiscard]] SignedDivisionResult divided_by(SignedBigInteger const& divisor) const;
|
|
|
|
|
|
|
|
|
|
[[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
|
|
|
|
2020-06-04 22:46:18 +04:30
|
|
|
void set_bit_inplace(size_t bit_index);
|
|
|
|
|
|
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:
|
2022-02-06 13:17:34 +00:00
|
|
|
void ensure_sign_is_valid()
|
|
|
|
|
{
|
|
|
|
|
if (m_sign && m_unsigned_data.is_zero())
|
|
|
|
|
m_sign = false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-04 22:46:18 +04:30
|
|
|
bool m_sign { false };
|
|
|
|
|
UnsignedBigInteger m_unsigned_data;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|