aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan
Commit message (Collapse)AuthorAgeFilesLines
...
* Use centralized hasher names in openssl pluginMartin Willi2012-07-172-73/+10
|
* Add short names for hasher algorithmsMartin Willi2012-07-172-0/+18
|
* Support void return values in OpenSSL 0.9.8 HMAC functionsMartin Willi2012-07-171-17/+28
|
* Test reset() of hasher in crypto testerMartin Willi2012-07-161-1/+9
|
* Refactored error handling in crypto testerMartin Willi2012-07-161-95/+114
|
* Set a key before benching PRFsMartin Willi2012-07-161-1/+8
|
* Resetting OpenSSL HMAC with NULL key reuses existing keyMartin Willi2012-07-161-11/+2
|
* Make sure HMAC_Init is called before HMAC_Update, fixes crashMartin Willi2012-07-161-0/+5
|
* Check and forward syscall errors in AF_ALGMartin Willi2012-07-166-52/+71
|
* Add a return value to hasher_t.reset()Martin Willi2012-07-1612-51/+74
|
* Add a return value to hasher_t.allocate_hash()Martin Willi2012-07-1627-95/+114
|
* Add a return value to hasher_t.get_hash()Martin Willi2012-07-1614-59/+103
|
* Add a return value to crypter_t.set_key()Martin Willi2012-07-1618-42/+49
|
* Add a return value to crypter_t.decrypt()Martin Willi2012-07-1613-27/+55
|
* 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