summaryrefslogtreecommitdiff
path: root/Libraries
AgeCommit message (Expand)Author
2020-07-30LibCrypto: Add some checksum algorithmsstelar7
2020-07-30LibWeb: Complete the redirect URL before loading itAnotherTest
2020-07-30LibX86: FPU instructions never have a lock prefixNico Weber
2020-07-30LibX86: Disassemble most remaining FPU instructionsNico Weber
2020-07-29LibCore: Rename puff.c => puff.cppAndreas Kling
2020-07-28LibWeb: Make layout tree have non-const pointers to the DOMAndreas Kling
2020-07-28LibWeb: Oops, provide the correct WrapperType for UIEventAndreas Kling
2020-07-28LibWeb: Add UIEvent class (base of MouseEvent, and others)Andreas Kling
2020-07-28LibWeb: Move the Page/Frame/EventHandler classes into Page/Andreas Kling
2020-07-28LibWeb: Fix bad #include in CSSParser.cppAndreas Kling
2020-07-28LibWeb: Move the CSS parser into CSS/Parser/Andreas Kling
2020-07-28LibWeb: Move the HTML parser into HTML/Parser/Andreas Kling
2020-07-28LibCrypto: Implement and test CTR decryptionBen Wiederhake
2020-07-28LibCrypto: Fix broken CTR mode, implement RFC 3686 Test VectorsBen Wiederhake
2020-07-28LibCrypto: Document CTR weirdness in depthBen Wiederhake
2020-07-28LibCrypto: Already using strong cryptoBen Wiederhake
2020-07-28LibJS: Soothe gcc about printf-%s on (non-)nullptrBen Wiederhake
2020-07-28LibWeb: Move HTML classes into the Web::HTML namespaceAndreas Kling
2020-07-28LibWeb: Move MouseEvent into the UIEvents namespaceAndreas Kling
2020-07-28LibX86: Disassemble most FPU instructions starting with D9Nico Weber
2020-07-28LibCore: add get_password().Peter Elliott
2020-07-28LibC: Add passwords to putpwentPeter Elliott
2020-07-28LibCrypt: Add LibCrypt, crypt, and crypt_rPeter Elliott
2020-07-28LibGUI: Enable icons for SubMenusBen Wiederhake
2020-07-28LibGUI: Refactor icon realization in MenuBen Wiederhake
2020-07-28LibGUI: Set correct default value during menu destructionBen Wiederhake
2020-07-28DevTools+LibGUI: Make ProcessChooser a general Dialog in LibGUIthankyouverycool
2020-07-28LibC: Fix strtol() not setting endptr correctly for "0"Andreas Kling
2020-07-28LibC: Move getpagesize() out-of-lineAndreas Kling
2020-07-27LibCrypto: Change the signatures of RSA::import_[XXX]_key to use Span.asynts
2020-07-27LibCrypto: Change the signature of decode_pem to use Span.asynts
2020-07-27LibCrypto: Change the signature of RSA::parse_rsa_key to use Span.asynts
2020-07-27LibCore: Change the signature of Socket::send() to use Span.asynts
2020-07-27LibCrypto: Change [XXX]BigInteger::export_data() to use Span.asynts
2020-07-27AK: Change the signature of AK::encode_base64() to use Span.asynts
2020-07-27LibCrypto: This method wrote to a const pointer.asynts
2020-07-27LibCore+LibWeb: Move guess-mimetype-based-on-filename logic to LibCoreAndreas Kling
2020-07-27LibWeb: Add a whole bunch of HTML DOM bindingsLuke
2020-07-27Kernel+LibC: Add sys$set_process_name() for changing the process nameAndreas Kling
2020-07-27LibC: Make the getpid() cache process global (instead of thread-local)Andreas Kling
2020-07-27LibGfx: Fix dumb typo in PNG decoderAndreas Kling
2020-07-27LibGfx: Simplify some excessive use of pow() in scanline unfilteringAndreas Kling
2020-07-27AK+LibC: Always use REP MOVSB/STOSB for memcpy()/memset()Andreas Kling
2020-07-27CppLexer: Support raw string literalsNico Weber
2020-07-27CppLexer: Support L, u, u8, U prefixes on string and char literalsNico Weber
2020-07-27CppLexer: Correctly highlight hex escapes in string and char literalsNico Weber
2020-07-27CppLexer: Support \U escapes in addition to \u escapesNico Weber
2020-07-27LibGfx: Templatize Point, Size, and RectMatthew Olsson
2020-07-27CppLexer: Add token types for "::", "::*", ".*", "->*"Nico Weber
2020-07-27CppLexer: Add token types for ".", "->"Nico Weber