summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Expand)Author
2022-06-10Add _?ENTRY_NB() macro for doing an ASM function entry withoutPhilip Guenther
2022-06-07Change the loop index from an unsigned int to size_t now that allTheo Buehler
2022-06-07Simplify another CBS_write_bytes() call in d2i_SSL_SESSION()Theo Buehler
2022-06-07Switch sid_ctx_length in SSL, SSL_CTX and SSL_SESSION to a size_tTheo Buehler
2022-06-07Use CBS_write_bytes() instead of manual unpacking of a CBS and assigningTheo Buehler
2022-06-07Simplify various CBS_write_bytes() callsTheo Buehler
2022-06-07Switch SSL_SESSION's session_id_length to a size_tTheo Buehler
2022-06-07Add missing error check call in ssl3_get_new_session_ticket()Theo Buehler
2022-06-07Another small readability tweak: compare explicitly against 0 and NULL,Theo Buehler
2022-06-07Tweak readability of a test: compare tmp explicitly against 0 and dropTheo Buehler
2022-06-07Add a cast to SSL_SESSION_get_id() to indicate that session_id_lengthTheo Buehler
2022-06-07fix indentTheo Buehler
2022-06-07Unindent and simplify remove_session_lock()Theo Buehler
2022-06-07Drop an unnecessary castTheo Buehler
2022-06-07Simplify CBS_write_bytes() invocationTheo Buehler
2022-06-07The master_key_length can no longer be < 0Theo Buehler
2022-06-07Switch the SSL_SESSION's master_key_length to a size_tTheo Buehler
2022-06-07Add error checking to tls_session_secret_cb() callsTheo Buehler
2022-06-06Use SSL3_CK_VALUE_MASK instead of hardcoded 0xffff and remove someTheo Buehler
2022-06-06Tweak comment describing the SSL_SESSION ASN.1Theo Buehler
2022-06-06Minor style cleanup in ssl_txt.cTheo Buehler
2022-06-06Fix comment + spacing.Theo Buehler
2022-06-06Remove incorrect and ungrammattical commentTheo Buehler
2022-06-06Fix spaces before tabsTheo Buehler
2022-06-04The parse stubs need to skip over the extension data.Theo Buehler
2022-06-04Tweak a comment using review feedback from jsingTheo Buehler
2022-06-03Add stubbed out handlers for the pre_shared_key extensionTheo Buehler
2022-06-03Implement handlers for the psk_key_exchange_modes extensions.Theo Buehler
2022-06-03Add a use_psk_dhe_ke flag to the TLSv1.3 handshake structTheo Buehler
2022-06-03Ensure that a client who sent a PSK extension has also sent a PSKTheo Buehler
2022-06-03Provide #defines for the two currently registered PskKeyExchangeModes.Theo Buehler
2022-05-30move bufsz description after appbufsz as per struct fields orderop
2022-05-28clear cur_membag so that pcap can be used more than onceTheo de Raadt
2022-05-28Do not walk off the end of the array performing freesTheo de Raadt
2022-05-25Revert the .rodata.cst4 change: results in incorrect value readPhilip Guenther
2022-05-25Remove an unnecessary XXX comment. The suggested check is part ofTheo Buehler
2022-05-24Delete superfluous/duplicated #includesPhilip Guenther
2022-05-24Give internal 'botch' labels a '.L' prefix to remove them from thePhilip Guenther
2022-05-24Address the clang 13 "changed binding to STB_WEAK" warning on arm64:Philip Guenther
2022-05-24Clean up ASN1_item_sign_ctx() a littleTheo Buehler
2022-05-24Simplify ec_asn1_group2curve()Theo Buehler
2022-05-24Straightforward conversion of ecdh_cms_encrypt() toTheo Buehler
2022-05-24Rewrite X509_PUBKEY_set0_param() to use asn1_abs_set_unused_bits()Theo Buehler
2022-05-24Use asn1_abs_set_unused_bits() in asn1_str2type()Theo Buehler
2022-05-24Set the correct alignment on __jmpxor (.align's meaning is MD!)Philip Guenther
2022-05-24Delete superfluous/duplicated #includesPhilip Guenther
2022-05-24Add END() tags to give these functions sizes in the ELF symbol tablePhilip Guenther
2022-05-24Address the clang 13 "changed binding to STB_WEAK" warning on arm (32bit):Philip Guenther
2022-05-23Respect RLIMIT_FSIZE when extending a file via truncat(2)/ftruncate(2).Todd C. Miller
2022-05-21Remove some unhelpful comments and spell NULL correctly.Joel Sing