mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 03:17:34 +00:00
LibCrypto: Add the [[nodiscard]] qualifier in both BigInteger classes
This commit is contained in:
parent
303be38f65
commit
dab814ea11
2 changed files with 67 additions and 67 deletions
|
@ -40,15 +40,15 @@ public:
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
static SignedBigInteger create_invalid()
|
[[nodiscard]] static SignedBigInteger create_invalid()
|
||||||
{
|
{
|
||||||
return { UnsignedBigInteger::create_invalid(), false };
|
return { UnsignedBigInteger::create_invalid(), false };
|
||||||
}
|
}
|
||||||
|
|
||||||
static SignedBigInteger import_data(StringView data) { return import_data((u8 const*)data.characters_without_null_termination(), data.length()); }
|
[[nodiscard]] static SignedBigInteger import_data(StringView data) { return import_data((u8 const*)data.characters_without_null_termination(), data.length()); }
|
||||||
static SignedBigInteger import_data(u8 const* ptr, size_t length);
|
[[nodiscard]] static SignedBigInteger import_data(u8 const* ptr, size_t length);
|
||||||
|
|
||||||
static SignedBigInteger create_from(i64 value)
|
[[nodiscard]] static SignedBigInteger create_from(i64 value)
|
||||||
{
|
{
|
||||||
auto sign = false;
|
auto sign = false;
|
||||||
u64 unsigned_value;
|
u64 unsigned_value;
|
||||||
|
@ -63,15 +63,15 @@ public:
|
||||||
|
|
||||||
size_t export_data(Bytes, bool remove_leading_zeros = false) const;
|
size_t export_data(Bytes, bool remove_leading_zeros = false) const;
|
||||||
|
|
||||||
static SignedBigInteger from_base(u16 N, StringView str);
|
[[nodiscard]] static SignedBigInteger from_base(u16 N, StringView str);
|
||||||
String to_base(u16 N) const;
|
[[nodiscard]] String to_base(u16 N) const;
|
||||||
|
|
||||||
u64 to_u64() const;
|
[[nodiscard]] u64 to_u64() const;
|
||||||
double to_double() const;
|
[[nodiscard]] double to_double() const;
|
||||||
|
|
||||||
UnsignedBigInteger const& unsigned_value() const { return m_unsigned_data; }
|
[[nodiscard]] UnsignedBigInteger const& unsigned_value() const { return m_unsigned_data; }
|
||||||
Vector<u32, STARTING_WORD_SIZE> const words() const { return m_unsigned_data.words(); }
|
[[nodiscard]] Vector<u32, STARTING_WORD_SIZE> const words() const { return m_unsigned_data.words(); }
|
||||||
bool is_negative() const { return m_sign; }
|
[[nodiscard]] bool is_negative() const { return m_sign; }
|
||||||
|
|
||||||
void negate()
|
void negate()
|
||||||
{
|
{
|
||||||
|
@ -101,42 +101,42 @@ public:
|
||||||
m_unsigned_data.invalidate();
|
m_unsigned_data.invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool is_invalid() const { return m_unsigned_data.is_invalid(); }
|
[[nodiscard]] bool is_invalid() const { return m_unsigned_data.is_invalid(); }
|
||||||
|
|
||||||
// These get + 1 byte for the sign.
|
// These get + 1 byte for the sign.
|
||||||
size_t length() const { return m_unsigned_data.length() + 1; }
|
[[nodiscard]] size_t length() const { return m_unsigned_data.length() + 1; }
|
||||||
size_t trimmed_length() const { return m_unsigned_data.trimmed_length() + 1; };
|
[[nodiscard]] size_t trimmed_length() const { return m_unsigned_data.trimmed_length() + 1; };
|
||||||
|
|
||||||
SignedBigInteger plus(SignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger plus(SignedBigInteger const& other) const;
|
||||||
SignedBigInteger minus(SignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger minus(SignedBigInteger const& other) const;
|
||||||
SignedBigInteger bitwise_or(SignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger bitwise_or(SignedBigInteger const& other) const;
|
||||||
SignedBigInteger bitwise_and(SignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger bitwise_and(SignedBigInteger const& other) const;
|
||||||
SignedBigInteger bitwise_xor(SignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger bitwise_xor(SignedBigInteger const& other) const;
|
||||||
SignedBigInteger bitwise_not() const;
|
[[nodiscard]] SignedBigInteger bitwise_not() const;
|
||||||
SignedBigInteger shift_left(size_t num_bits) const;
|
[[nodiscard]] SignedBigInteger shift_left(size_t num_bits) const;
|
||||||
SignedBigInteger multiplied_by(SignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger multiplied_by(SignedBigInteger const& other) const;
|
||||||
SignedDivisionResult divided_by(SignedBigInteger const& divisor) const;
|
[[nodiscard]] SignedDivisionResult divided_by(SignedBigInteger const& divisor) const;
|
||||||
|
|
||||||
SignedBigInteger plus(UnsignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger plus(UnsignedBigInteger const& other) const;
|
||||||
SignedBigInteger minus(UnsignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger minus(UnsignedBigInteger const& other) const;
|
||||||
SignedBigInteger multiplied_by(UnsignedBigInteger const& other) const;
|
[[nodiscard]] SignedBigInteger multiplied_by(UnsignedBigInteger const& other) const;
|
||||||
SignedDivisionResult divided_by(UnsignedBigInteger const& divisor) const;
|
[[nodiscard]] SignedDivisionResult divided_by(UnsignedBigInteger const& divisor) const;
|
||||||
|
|
||||||
u32 hash() const;
|
[[nodiscard]] u32 hash() const;
|
||||||
|
|
||||||
void set_bit_inplace(size_t bit_index);
|
void set_bit_inplace(size_t bit_index);
|
||||||
|
|
||||||
bool operator==(SignedBigInteger const& other) const;
|
[[nodiscard]] bool operator==(SignedBigInteger const& other) const;
|
||||||
bool operator!=(SignedBigInteger const& other) const;
|
[[nodiscard]] bool operator!=(SignedBigInteger const& other) const;
|
||||||
bool operator<(SignedBigInteger const& other) const;
|
[[nodiscard]] bool operator<(SignedBigInteger const& other) const;
|
||||||
bool operator<=(SignedBigInteger const& other) const;
|
[[nodiscard]] bool operator<=(SignedBigInteger const& other) const;
|
||||||
bool operator>(SignedBigInteger const& other) const;
|
[[nodiscard]] bool operator>(SignedBigInteger const& other) const;
|
||||||
bool operator>=(SignedBigInteger const& other) const;
|
[[nodiscard]] bool operator>=(SignedBigInteger const& other) const;
|
||||||
|
|
||||||
bool operator==(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator==(UnsignedBigInteger const& other) const;
|
||||||
bool operator!=(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator!=(UnsignedBigInteger const& other) const;
|
||||||
bool operator<(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator<(UnsignedBigInteger const& other) const;
|
||||||
bool operator>(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator>(UnsignedBigInteger const& other) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void ensure_sign_is_valid()
|
void ensure_sign_is_valid()
|
||||||
|
|
|
@ -34,15 +34,15 @@ public:
|
||||||
|
|
||||||
UnsignedBigInteger() = default;
|
UnsignedBigInteger() = default;
|
||||||
|
|
||||||
static UnsignedBigInteger create_invalid();
|
[[nodiscard]] static UnsignedBigInteger create_invalid();
|
||||||
|
|
||||||
static UnsignedBigInteger import_data(StringView data) { return import_data((u8 const*)data.characters_without_null_termination(), data.length()); }
|
[[nodiscard]] static UnsignedBigInteger import_data(StringView data) { return import_data((u8 const*)data.characters_without_null_termination(), data.length()); }
|
||||||
static UnsignedBigInteger import_data(u8 const* ptr, size_t length)
|
[[nodiscard]] static UnsignedBigInteger import_data(u8 const* ptr, size_t length)
|
||||||
{
|
{
|
||||||
return UnsignedBigInteger(ptr, length);
|
return UnsignedBigInteger(ptr, length);
|
||||||
}
|
}
|
||||||
|
|
||||||
static UnsignedBigInteger create_from(u64 value)
|
[[nodiscard]] static UnsignedBigInteger create_from(u64 value)
|
||||||
{
|
{
|
||||||
VERIFY(sizeof(Word) == 4);
|
VERIFY(sizeof(Word) == 4);
|
||||||
UnsignedBigInteger integer;
|
UnsignedBigInteger integer;
|
||||||
|
@ -54,13 +54,13 @@ public:
|
||||||
|
|
||||||
size_t export_data(Bytes, bool remove_leading_zeros = false) const;
|
size_t export_data(Bytes, bool remove_leading_zeros = false) const;
|
||||||
|
|
||||||
static UnsignedBigInteger from_base(u16 N, StringView str);
|
[[nodiscard]] static UnsignedBigInteger from_base(u16 N, StringView str);
|
||||||
String to_base(u16 N) const;
|
[[nodiscard]] String to_base(u16 N) const;
|
||||||
|
|
||||||
u64 to_u64() const;
|
[[nodiscard]] u64 to_u64() const;
|
||||||
double to_double() const;
|
[[nodiscard]] double to_double() const;
|
||||||
|
|
||||||
Vector<Word, STARTING_WORD_SIZE> const& words() const { return m_words; }
|
[[nodiscard]] Vector<Word, STARTING_WORD_SIZE> const& words() const { return m_words; }
|
||||||
|
|
||||||
void set_to_0();
|
void set_to_0();
|
||||||
void set_to(Word other);
|
void set_to(Word other);
|
||||||
|
@ -73,38 +73,38 @@ public:
|
||||||
m_cached_hash = 0;
|
m_cached_hash = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool is_zero() const;
|
[[nodiscard]] bool is_zero() const;
|
||||||
bool is_odd() const { return m_words.size() && (m_words[0] & 1); }
|
[[nodiscard]] bool is_odd() const { return m_words.size() && (m_words[0] & 1); }
|
||||||
bool is_invalid() const { return m_is_invalid; }
|
[[nodiscard]] bool is_invalid() const { return m_is_invalid; }
|
||||||
|
|
||||||
size_t length() const { return m_words.size(); }
|
[[nodiscard]] size_t length() const { return m_words.size(); }
|
||||||
// The "trimmed length" is the number of words after trimming leading zeroed words
|
// The "trimmed length" is the number of words after trimming leading zeroed words
|
||||||
size_t trimmed_length() const;
|
[[nodiscard]] size_t trimmed_length() const;
|
||||||
|
|
||||||
void clamp_to_trimmed_length();
|
void clamp_to_trimmed_length();
|
||||||
void resize_with_leading_zeros(size_t num_words);
|
void resize_with_leading_zeros(size_t num_words);
|
||||||
|
|
||||||
size_t one_based_index_of_highest_set_bit() const;
|
size_t one_based_index_of_highest_set_bit() const;
|
||||||
|
|
||||||
UnsignedBigInteger plus(UnsignedBigInteger const& other) const;
|
[[nodiscard]] UnsignedBigInteger plus(UnsignedBigInteger const& other) const;
|
||||||
UnsignedBigInteger minus(UnsignedBigInteger const& other) const;
|
[[nodiscard]] UnsignedBigInteger minus(UnsignedBigInteger const& other) const;
|
||||||
UnsignedBigInteger bitwise_or(UnsignedBigInteger const& other) const;
|
[[nodiscard]] UnsignedBigInteger bitwise_or(UnsignedBigInteger const& other) const;
|
||||||
UnsignedBigInteger bitwise_and(UnsignedBigInteger const& other) const;
|
[[nodiscard]] UnsignedBigInteger bitwise_and(UnsignedBigInteger const& other) const;
|
||||||
UnsignedBigInteger bitwise_xor(UnsignedBigInteger const& other) const;
|
[[nodiscard]] UnsignedBigInteger bitwise_xor(UnsignedBigInteger const& other) const;
|
||||||
UnsignedBigInteger bitwise_not_fill_to_one_based_index(size_t) const;
|
[[nodiscard]] UnsignedBigInteger bitwise_not_fill_to_one_based_index(size_t) const;
|
||||||
UnsignedBigInteger shift_left(size_t num_bits) const;
|
[[nodiscard]] UnsignedBigInteger shift_left(size_t num_bits) const;
|
||||||
UnsignedBigInteger multiplied_by(UnsignedBigInteger const& other) const;
|
[[nodiscard]] UnsignedBigInteger multiplied_by(UnsignedBigInteger const& other) const;
|
||||||
UnsignedDivisionResult divided_by(UnsignedBigInteger const& divisor) const;
|
[[nodiscard]] UnsignedDivisionResult divided_by(UnsignedBigInteger const& divisor) const;
|
||||||
|
|
||||||
u32 hash() const;
|
[[nodiscard]] u32 hash() const;
|
||||||
|
|
||||||
void set_bit_inplace(size_t bit_index);
|
void set_bit_inplace(size_t bit_index);
|
||||||
|
|
||||||
bool operator==(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator==(UnsignedBigInteger const& other) const;
|
||||||
bool operator!=(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator!=(UnsignedBigInteger const& other) const;
|
||||||
bool operator<(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator<(UnsignedBigInteger const& other) const;
|
||||||
bool operator>(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator>(UnsignedBigInteger const& other) const;
|
||||||
bool operator>=(UnsignedBigInteger const& other) const;
|
[[nodiscard]] bool operator>=(UnsignedBigInteger const& other) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
friend class UnsignedBigIntegerAlgorithms;
|
friend class UnsignedBigIntegerAlgorithms;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue