summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto/BigInt
AgeCommit message (Expand)Author
2023-02-25Everywhere: Use _{short_,}string to create Strings from literalsLinus Groh
2023-01-20Everywhere: Convert known short-strings to the infallible String factoryTimothy Flynn
2023-01-15LibCrypto: Define *BigInteger::to_base to convert big integers to StringTimothy Flynn
2023-01-15LibCrypto+Everywhere: Rename *BigInteger::to_base to to_base_deprecatedTimothy Flynn
2022-12-09Everywhere: Use C++ concepts instead of requires clausesMoustafa Raafat
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-12-03Everywhere: Run clang-formatLinus Groh
2022-11-03AK+LibC+LibCrypto: Move FloatExtractor to AK/FloatingPoint.hDan Klishch
2022-11-02LibCrypto: Add a way to compare UnsignedBigInteger with doubleMoustafa Raafat
2022-10-22LibCrypto: Add SignedBigInteger::is_positive()Moustafa Raafat
2022-09-15LibCrypto: Fix -0 and 0 non-equalityLucas CHOLLET
2022-09-15LibCrypto: Add SignedBigInteger::negated_value()Lucas CHOLLET
2022-09-14Everywhere: Fix a variety of typosBrian Gianforcaro
2022-08-26LibCrypto+LibJS: Remove the create_from methods from BigIntegerdavidot
2022-08-26LibCrypto: Add a constructor to (Un)SignedBigInteger taking a doubledavidot
2022-08-26LibCrypto: Make the constructors of (Un)SignedBigInteger templateddavidot
2022-08-26LibCrypto: Add a rounding mode to UnsignedBigInteger::to_doubledavidot
2022-08-24LibCrypto: Implement a (mostly) proper to_double for UnsignedBigIntegerdavidot
2022-08-24LibCrypto: Make a VERIFY a static_assert since it only uses constantsdavidot
2022-08-24LibCrypto: Add a way to compare a SignedBigInteger with a doubledavidot
2022-07-18LibCrypto: Expose UnsignedBigInteger's is_zero() in SignedBigIntegerTimothy Flynn
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-07-12Meta+Userland: Simplify some formatterssin-ack
2022-07-09LibCrypto: Add the [[nodiscard]] qualifier in both BigInteger classesLucas CHOLLET
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-10Libraries: Use default constructors/destructors in LibCryptoLenny Maiorani
2022-02-06LibCrypto: Do not allow signed big integers to be negative zeroTimothy Flynn
2022-01-31LibCrypto: Change UnsignedBigInteger parser to use a StringViewTimothy Flynn
2022-01-18LibCrypo: Simplify mixed-sign bitwise_orNico Weber
2022-01-18LibCrypto: Remove some now-unused (and incorrect) methodsNico Weber
2022-01-18LibCrypto+LibJS: Better bitwise binary_xor binopNico Weber
2022-01-18LibCrypto+LibJS: Better bigint bitwise_or binopNico Weber
2022-01-18LibCrypto+LibJS: Better bigint bitwise_and binopNico Weber
2022-01-18LibJS+LibCrypto: Fix SignedBitInteger::bitwise_not and use it in LibJSNico Weber
2022-01-18LibCrypto: Add Formatter<SignedBigInteger>Nico Weber
2022-01-07Everywhere: Fix spelling mistakesmjz19910
2022-01-07Everywhere: Fix many spelling errorsmjz19910
2021-12-21AK+Everywhere: Replace __builtin bit functionsNick Johnson
2021-11-17AK: Convert AK::Format formatting helpers to returning ErrorOr<void>Andreas Kling
2021-11-16LibCrypto: Fix subtracting two negative `SignedBigInteger`sLinus Groh
2021-11-11Everywhere: Pass AK::StringView by valueAndreas Kling
2021-09-07Everywhere: Behaviour => BehaviorAndreas Kling
2021-09-06LibCrypto: Add naive implementation of {Un,}SignedBigInteger::to_doubleIdan Horowitz
2021-07-19LibCrypto: Add operator<= and operator>= to SignedBigIntegerIdan Horowitz
2021-07-12LibCrypto: Add the >= operator to UnsignedBigIntegerIdan Horowitz
2021-07-09LibCrypto: Add missing implementation of SBI::divided_by(USBI)Linus Groh
2021-07-08LibCrypto: Add missing implementation of SBI::multiplied_by(USBI)Linus Groh
2021-07-07LibCrypto: Add operator>() to UnsignedBigInteger and SignedBigIntegerLinus Groh
2021-07-01LibCrypto: Replace incorrect operator in SignedBigInteger::bitwise_andGal Horowitz