| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
| |
|
|
|
|
|
| |
It is not actually able to handle PEM encoded PKCS#12 files produced
by OpenSSL.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
The compiler spits no warning, but the wrong symbol is used when calling
semaphore_create() from strongSwan. Override the name with a #define to force
the use of our semaphore_create().
|
|
|
|
|
| |
The value is set only if it is not configured in strongswan.conf or has
not been set() otherwise.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
tzset() is hard to whitelist on some systems, as there is no symbol involved.
Call tzset() explicitly before initialization to avoid false positives.
|
|
|
|
|
|
|
| |
malloc hooks have become deprecated, and their use has always been problematic,
especially in multi-threaded applications. Replace the functionality by
overriding all malloc functions and query the system allocator functions
using dlsym() with RTLD_NEXT.
|
| |
|
| |
|
| |
|
|
|
|
| |
Otherwise the magic might be on the stack while checking it.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
If decryption fails, it returns -1. chunk_equals() should catch that error,
but be more explicit in error checking.
|
| |
|
| |
|
| |
|