summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto
AgeCommit message (Expand)Author
2021-09-21Libraries: Use AK::Variant default initialization where appropriateBen Wiederhake
2021-09-16LibCrypto: Use default instead of an empty constructor/destructorBrian Gianforcaro
2021-09-13LibCrypto: Fix MacOS build by replacing explicit_bzero with secure_zeroBrian Gianforcaro
2021-09-12LibCrypto: Use explicit_bzero instead of memset to zero 'secure data'Brian Gianforcaro
2021-09-07Everywhere: Behaviour => BehaviorAndreas Kling
2021-09-06LibCrypto: Add naive implementation of {Un,}SignedBigInteger::to_doubleIdan Horowitz
2021-09-06Everywhere: Make ByteBuffer::{create_*,copy}() OOM-safeAli Mohammad Pur
2021-09-06Everywhere: Use OOM-safe ByteBuffer APIs where possibleAli Mohammad Pur
2021-09-01Everywhere: Use my cool new @serenityos.org email addressPeter Elliott
2021-08-19AK: Move FormatParser definition from header to implementation fileTimothy Flynn
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
2021-07-01LibCrypto: Replace use of negate() in SignedBigInteger::bitwise_orGal Horowitz
2021-06-29LibCrypto: Replace from_base{2,8,10,16}() & to_base10 with from_base(N)Idan Horowitz
2021-06-29LibCrypto: Avoid unaligned reads in GHash constructorAndrew Kaster
2021-06-26LibJS+LibCrypto: Allow '_' as a numeric literal separator :^)Andreas Kling
2021-06-19LibCrypto: Fix Hash::MD5's movabilityDexesTTP
2021-06-14LibCrypto: Add {Signed,Unsigned}BigInteger::from_base{2, 8, 16} helpersIdan Horowitz
2021-06-14LibJS: Add all of the DataView.prototype.set* methodsIdan Horowitz
2021-06-14LibJS: Add all of the DataView.prototype.get* methodsIdan Horowitz
2021-06-09LibCrypto: Add hash methods to {Signed, Unsigned}BigIntegerIdan Horowitz
2021-05-31AK: Replace ByteBuffer::grow with resize()/ensure_capacity()Gunnar Beutner
2021-05-31LibCrypto: Fix bound checks when reading bitmapsBen Wiederhake
2021-05-19LibCrypto: Use the new return-from-Variant::visit() mechanismAli Mohammad Pur
2021-05-19LibCrypto: Make GCM movableDexesTTP
2021-05-19LibCrypto: Use AK::Variant in HashManagerDexesTTP
2021-05-19LibCrypto: Use AK::Variant in MultiHashDigestVariantDexesTTP
2021-05-19LibCrypto: Add the SHA-384 hash algorithmDexesTTP
2021-05-17LibCrypto: Change static constexpr array to function local constexprLenny Maiorani
2021-05-17Everywhere: Fix a bunch of typosLinus Groh
2021-05-17LibCrypto: Fix incorrectly constexpr variableLenny Maiorani
2021-05-14Userland: Replace arc4random() with get_random<u32>()Jean-Baptiste Boric
2021-05-14LibCrypto: Prevent a signed overflow during BigInt Modular PowerDexesTTP
2021-05-14LibCrypto+LibTLS: Avoid unaligned reads and writesAli Mohammad Pur
2021-05-14LibCrypto: Do not assume that the passed in IV is as long as a blockAli Mohammad Pur
2021-05-13LibCrypto: Reduce the UnsignedBigInteger inline size to 32 wordsDexesTTP
2021-05-13LibCrypto: Add the montgomery modular power algorithmDexesTTP
2021-05-13LibCrypto: Add a += operation to UnsignedBigIntegerAlgorithmsDexesTTP
2021-05-13LibCrypto: Add the UnsignedBigInteger::Word aliasDexesTTP
2021-05-13LibCrypto: Split BigInteger operations into an Algorithms classDexesTTP
2021-05-13LibCrypto: Fix an out-of-bounds access in UnsignedBigIntegerDexesTTP
2021-05-13LibCrypto: Enable -Wvla for LibCryptoAli Mohammad Pur
2021-05-13LibCrypto: Remove all uses of VLAsAli Mohammad Pur
2021-05-07LibCrypto: Fix a mistake in appendff() conversionAndreas Kling
2021-05-07LibCrypto: Convert StringBuilder::appendf() => AK::FormatAndreas Kling
2021-05-01Everywhere: Turn #if *_DEBUG into dbgln_if/if constexprGunnar Beutner