aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan
Commit message (Collapse)AuthorAgeFilesLines
...
* Add a return value to crypter_t.encryptMartin Willi2012-07-1616-134/+204
|
* Identation fixes, warn about unused nonce_gen return valuesMartin Willi2012-07-161-2/+4
|
* Add a return value to mac_t.set_key()Martin Willi2012-07-167-14/+26
|
* Add a return value to mac_t.get_bytes()Martin Willi2012-07-167-41/+38
|
* Check rng return value when seeding OpenSSL RNGTobias Brunner2012-07-161-1/+5
|
* Check rng return value when generating DH secret in gcrypt pluginTobias Brunner2012-07-161-2/+2
|
* Check rng return value when generating DH secrets and primes in gmp pluginTobias Brunner2012-07-163-13/+19
|
* Wrapper functions added to generate non-zero random bytesTobias Brunner2012-07-162-0/+68
|
* Check rng return value when generating OCSP noncesTobias Brunner2012-07-161-7/+7
|
* Check rng return value when generating key and IV in PKCS#7 wrapperTobias Brunner2012-07-161-2/+14
|
* Check rng return value in crypto testerTobias Brunner2012-07-161-15/+17
|
* Relay rng return value in nonce pluginTobias Brunner2012-07-161-4/+2
|
* RNGs' get_bytes and allocate_bytes return booleanTobias Brunner2012-07-166-21/+39
|
* Nonce: Let get_nonce, allocate_nonce return booleanReto Buerki2012-07-162-4/+8
|
* Add a return value to prf_t.set_key()Martin Willi2012-07-168-12/+35
|
* Add a return value to prf_t.allocate_bytes()Martin Willi2012-07-167-21/+21
|
* Add a return value to prf_t.get_bytes()Martin Willi2012-07-1610-31/+90
|
* prf_plus_create() can return NULL on failureMartin Willi2012-07-161-1/+1
|
* Add a return value to prf_plus_t.get_bytes()Martin Willi2012-07-162-7/+7
|
* Add a return value to prf_plus_t.allocate_bytes()Martin Willi2012-07-162-2/+5
|
* Add a return value to signer_t.set_key()Martin Willi2012-07-165-7/+19
|
* Add a return value to signer_t.get_signature()Martin Willi2012-07-165-21/+45
|
* Add a return value to signer_t.allocate_signature()Martin Willi2012-07-165-6/+20
|
* Add a return value to aead_t.set_key()Martin Willi2012-07-165-6/+18
|
* Add a return value to aead_t.encrypt()Martin Willi2012-07-165-12/+27
|
* Compilation error fixed if dladdr is not availableTobias Brunner2012-07-141-0/+6
|
* Silence cast warning on 32-bit platformsMartin Willi2012-07-131-1/+1
|
* Don't set BFD_DECOMPRESS when building against older binutilsMartin Willi2012-07-131-0/+2
|
* Append directly to base string in vstr printf hooksMartin Willi2012-07-132-20/+10
|
* Write directly to FILE stream in glibc printf hooksMartin Willi2012-07-132-35/+49
|
* Pass opaque data to printf hooks and print_in_hook()Martin Willi2012-07-1314-59/+83
|
* Increase leak detective backtrace depth by a frameMartin Willi2012-07-131-4/+4
|
* Don't access tail magic when reallocating invalid memory, as it would crashMartin Willi2012-07-131-5/+7
|
* With --enable-bfd-backtraces, use binutils libbfd to resolve backtracesMartin Willi2012-07-134-29/+287
| | | | | | | | The invocation of addr2line to resolve backtrace source locations is slow and cumbersome. When using libbfd directly, we can eliminate the overhead of the process invocation. Even better, we can cache library symbol names, bringing wicked fast lookups. As a neat bonus, we can resolve static function names.
* Add an external method to disable leak detective temporarlyMartin Willi2012-07-132-0/+38
|
* Added PLUGIN_NOOP to separate PLUGIN_PROVIDE from previous CALLBACK/REGISTER ↵Tobias Brunner2012-07-122-9/+19
| | | | entries
* Android.mk of libstrongswan adapted to config.h changesTobias Brunner2012-07-121-78/+24
|
* Properly cleanup thread-local values for the threads destroying ↵Tobias Brunner2012-07-121-2/+19
| | | | thread_value_t objects
* fixed libstrongswan/Makefile.amAndreas Steffen2012-07-111-11/+11
|
* Install dev headers only if --with-dev-headers= option is setMartin Willi2012-07-111-1/+3
|
* Check if config.h passed correctly via gcc -includeMartin Willi2012-07-111-0/+4
|
* Install libstrongswan development headersMartin Willi2012-07-112-81/+56
|
* Use and install a config.h AC_CONFIG_HEADER that contains all AC_DEFINE resultsMartin Willi2012-07-111-0/+3
|
* Add safe_strerror() to leak detective whitelistMartin Willi2012-07-111-0/+1
| | | | | | While the thread specific strerror buffer gets cleaned up for worker threads during their termination, the main thread itself, and so its strerror buffer, is still alive during leak reports.
* Add an option to disable libstrongswan certificate cachingMartin Willi2012-07-091-18/+29
|
* getpwnam_r and getgrnam_r are not supported by the Android NDKTobias Brunner2012-07-091-24/+69
|
* Android.mk of libstrongswan updatedTobias Brunner2012-07-091-0/+2
|
* Refactored heavily #ifdefd capability code to its own libstrongswan classMartin Willi2012-07-043-0/+358
|
* Added wrapper for POSIX spin locksTobias Brunner2012-07-043-0/+191
|
* Default to register_printf_specifier() if no printf hooking #definedMartin Willi2012-07-031-0/+7
| | | | | | This allows us to build (non-./configured) external tools against libstrongswan without explicitly specifiying the most commonly used printf hooking function.