summaryrefslogtreecommitdiff
path: root/lib/libssl
AgeCommit message (Expand)Author
2014-07-10Remove empty sections and references to des_modes(7) which we don't have.Miod Vallat
2014-07-10Fewer lies, also do not document DES_3cbc_encrypt anymore.Miod Vallat
2014-07-10Features introduce in OpenSSL 0.9.8 do not deserve their own section.Miod Vallat
2014-07-10Attempt to (incompletely) document EVP_aes_*().Miod Vallat
2014-07-10RSA_setup_blinding() gets a BN with BN_CTX_get(), returns `out of memory'Miod Vallat
2014-07-10make asn1 free safe to call with null pointers of any type.Ted Unangst
2014-07-10One sure hopes that OPENSSL_cleanse will:Joel Sing
2014-07-10Remove #if 0 code which dumps your data to stdout.Miod Vallat
2014-07-10Tweak some comments. We do not really need to know that "New!" flags wereJoel Sing
2014-07-10Remove more compression tendrils.Joel Sing
2014-07-10Stop playing with the RSA_FLAG_BLINDING flag. It does nothing.Joel Sing
2014-07-10delete some casts. ok miodTed Unangst
2014-07-10Missing allocation checks and potential NULL pointer dereference in theMiod Vallat
2014-07-10Remove RSA_FLAG_NO_EXP_CONSTTIME, which was deprecated 12+ years ago.Joel Sing
2003-05-11import 0.9.7b (without idea and rc5)Markus Friedl
2014-07-10Remove more compression related code.Joel Sing
2014-07-10Remove DEBUG_KEYGEN and DEBUG_DECRYPT support.Miod Vallat
2014-07-10replace getservbyname_r with getaddrinfo for portabilitybcook
2014-07-10Tame the tedu... we still want to know that Compression and Expansion areJoel Sing
2014-07-10Put back some parts of the public SSL API that should not have beenJoel Sing
2014-07-10forgot to decompress here tooTed Unangst
2014-07-10Remove bogus preprocessor statements trying to pick the largest integerMiod Vallat
2014-07-10check return value of write.bcook
2014-07-10crank major for decompression featureTed Unangst
2014-07-10decompress libssl. ok beck jsingTed Unangst
2014-07-10KNF comments, reflowing and moving out of the middle of argument lists inPhilip Guenther
2014-07-10remove unused ecc_pkey_size.bcook
2014-07-10BN_free, BN_clear_free, BN_CTX_free, BN_BLINDING_free and BN_MONT_CTX_freeJoel Sing
2014-07-10Use a while loop instead of an ifdowhile loop.Joel Sing
2014-07-09include <limits.h> for LONG_MIN/LONG_MAX.bcook
2014-07-09ASN1_STRING_free can handle NULL, so callers don't need to check. ok miodTed Unangst
2014-07-09unfidef RL_DEBUG. hopefully it's been debugged by nowTed Unangst
2014-07-09firebomb some MDEBUG leftoversTed Unangst
2014-07-09unifdef a whole bunch of NO RSA/DSA/ECDH defines i deleted from libsslTed Unangst
2014-07-09clean up if 0/if 1 code. we don't care anymore.Ted Unangst
2014-07-09move a commentTed Unangst
2014-07-09reset host, port, path to null after freeing so the caller doesn'tTed Unangst
2014-07-09stale prototypeTed Unangst
2014-07-09Make comments readable.Joel Sing
2014-07-09More KNF.Joel Sing
2014-07-09KNF.Joel Sing
2014-07-09ocsp_check_ids says "If algoritm mismatch let caller deal with it" beforeTed Unangst
2014-07-09Update to match the current state of crypto/rand, and remove MLINKS forMiod Vallat
2014-07-09Remove mention that the PRNG needs to be seeded before invoking someMiod Vallat
2014-07-09Unifdef -UPKCS_TESTVECT - we don't want the random data used in OAEP paddingMiod Vallat
2014-07-09{malloc,reallocarray} + memset(,0,) -> callocMiod Vallat
2014-07-09Replace memset(a, 0, ...); free(a); by explicit_bzero(a, ...); free(a); inMiod Vallat
2014-07-09Remove leading underscore from _BYTE_ORDER and _{LITTLE,BIG}_ENDIAN, to beMiod Vallat
2014-07-09miod@ fixed the "bug" so remove reference to it in the man pod^Wpage.Joel Sing
2014-07-09add <sys/filio.h> header for FIONBIObcook