summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCrypto
AgeCommit message (Expand)Author
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
2021-04-29Everywhere: "indexes" => "indices"Andreas Kling
2021-04-29Everywhere: Use "the SerenityOS developers." in copyright headersLinus Groh
2021-04-25Everywhere: Remove empty line after function body opening curly braceLinus Groh
2021-04-22AK+Userland: Use mpfard@serenityos.org for my copyright headersAli Mohammad Pur
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-04-21Everywhere: Remove redundant inline keyword with constexprLenny Maiorani
2021-04-18LibCrypto: Avoid creating bools from anything except boolsAnotherTest
2021-04-18LibCrypto: Implement UTCTime and GeneralizedTime parsersAnotherTest
2021-04-18LibCrypo: Add an ASN.1/DER pretty-printerAnotherTest
2021-04-18LibCrypto: Allow the user to override the DER read kind and classAnotherTest
2021-04-18LibCrypto: Add the GeneralizedTime ASN.1 typeAnotherTest
2021-04-15Everything: Add `-Wnon-virtual-dtor` flagNicholas-Baron
2021-04-03LibCrypto: Avoid overly big allocs in intermediate ModularPower resultsAnotherTest
2021-03-12Everywhere: Remove klog(), dbg() and purge all LogStream usage :^)Andreas Kling
2021-03-08Everywhere: Remove unnecessary whitespace at the end of some lines.Emanuele Torre
2021-03-08LibCrypto: Fail with overflow when bitfield has too many unused bitsAnotherTest
2021-03-04LibCrypto: Use BitmapView instead of Bitmap::wrap()Andreas Kling
2021-02-26Everywhere: Remove a bunch of redundant 'AK::' namespace prefixesLinus Groh
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-14LibCrypto: Don't copy the prime test candidatesAnotherTest
2021-02-14LibCrypto: Make a better ASN.1 parserAnotherTest
2021-02-14LibCrypto: memcmp() all bytes in UnsignedBigInteger::operator==Linus Groh
2021-02-08Everywhere: Replace dbgln<flag>(...) with dbgln_if(flag, ...)AnotherTest
2021-01-25Everywhere: Debug macros instead of constexpr.asynts