Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | support gre key in ikev1tteras | Timo Teräs | 2017-11-20 | 9 | -39/+171 |
| | | | | | | | | | | | | | | this implements gre key negotiation in ikev1 similarly to the ipsec-tools patch in alpine. the from/to port pair is internally used as gre key for gre protocol traffic selectors. since from/to pairs 0/0xffff and 0xffff/0 have special meaning, the gre keys 0xffff and 0xffff0000 will not work. this is not standard compliant, and should probably not be upstreamed or used widely, but it is applied for interoperability with alpine racoon for the time being. | ||||
* | vici: add (deprecated) async parameter | Timo Teräs | 2017-11-20 | 1 | -2/+3 |
| | | | | | | | This is obsoleted by the new "timeout=-1" option that achieves the same. Only for compatibility with old versions of quagga-nhrp. Signed-off-by: Timo Teräs <timo.teras@iki.fi> | ||||
* | vici: add support for individual sa state changes | Timo Teräs | 2017-11-20 | 1 | -0/+105 |
| | | | | | | Useful for monitoring and tracking full SA. Signed-off-by: Timo Teräs <timo.teras@iki.fi> | ||||
* | vici: send certificates for ike-sa events | Timo Teräs | 2017-11-20 | 1 | -7/+41 |
| | | | | Signed-off-by: Timo Teräs <timo.teras@iki.fi> | ||||
* | charon: add optional source and remote overrides for initiate | Timo Teräs | 2017-11-20 | 12 | -48/+218 |
| | | | | | | | | | | | This introduces support for specifying optional IKE SA specific source and remote address for child sa initiation. This allows to initiate wildcard connection for known address via vici. In addition this allows impler implementation of trap-any patches and is a prerequisite for dmvpn support. Signed-off-by: Timo Teräs <timo.teras@iki.fi> | ||||
* | ike: Adhere to IKE_SA limit when checking out by config | Tobias Brunner | 2017-11-20 | 1 | -34/+37 |
| | | | | | This prevents new SAs from getting created if we hit the global IKE_SA limit (we still allow checkout_new(), which is used for rekeying). | ||||
* | hashers: Change names of SHA2 hash algorithms | Tobias Brunner | 2017-11-17 | 1 | -8/+8 |
| | | | | | Keep the lower case names as they are as we use them internally (parsing and e.g. in OpenSSL as identifier). | ||||
* | ikev2: Add hash algorithm used for RSASSA-PSS signature to log message | Tobias Brunner | 2017-11-17 | 1 | -11/+41 |
| | |||||
* | hasher: Add uppercase short names for hash algorithms | Tobias Brunner | 2017-11-17 | 2 | -0/+23 |
| | |||||
* | x509: Initialize signature params when parsing attribute certificates | Tobias Brunner | 2017-11-15 | 1 | -1/+1 |
| | |||||
* | sw-collector: Unmap history file on failure to instantiate extractor | Tobias Brunner | 2017-11-15 | 1 | -0/+1 |
| | |||||
* | charon: Explicitly check return value of fileno() | Tobias Brunner | 2017-11-15 | 2 | -2/+12 |
| | | | | | This is mainly for Coverity because fchown() can't take a negative value, which the -1 check implies is possible. | ||||
* | pkcs8: Add explicit comment for RSASSA-PSS fall-through | Tobias Brunner | 2017-11-15 | 1 | -0/+1 |
| | |||||
* | The pacman tool got replaced by the sec-updater tool | Tobias Brunner | 2017-11-15 | 2 | -2/+1 |
| | |||||
* | Fixed some typos, courtesy of codespell | Tobias Brunner | 2017-11-15 | 15 | -19/+19 |
| | |||||
* | swanctl: Add check for conflicting short options | Tobias Brunner | 2017-11-13 | 1 | -0/+9 |
| | |||||
* | swanctl: Properly register --counters commmand | Tobias Brunner | 2017-11-13 | 1 | -1/+1 |
| | | | | Use C instead of c, which is already used for --load-conns. | ||||
* | libimcv: Updated imv database | Andreas Steffen | 2017-11-11 | 1 | -4/+88 |
| | |||||
* | libtpmtss: Added missing argument in hasher_from_signature_scheme() | Andreas Steffen | 2017-11-10 | 1 | -1/+1 |
| | |||||
* | charon-tkm: Unlink PID file after deinit | Tobias Brunner | 2017-11-10 | 1 | -11/+31 |
| | | | | | | Same change as for charon in the previous commit. References #2460. | ||||
* | charon: Unlink PID file after daemon deinit (i.e. after unloading plugins etc.) | Tobias Brunner | 2017-11-10 | 1 | -9/+14 |
| | | | | | | | | Make sure, though, that we only remove the file if we actually created it (e.g. not for --help or --version). And do so before deinitializing libstrongswan due to leak detective. Fixes #2460. | ||||
* | unit-tests: Rename targets for libstrongswan and kernel-netlink | Thomas Egerer | 2017-11-09 | 2 | -10/+10 |
| | | | | | | | | | libstrongswan and kernel-netlink are the only two components which do not adhere to the naming scheme used for all other tests. If the tests are run by an external application this imposes problems due to clashing names. Signed-off-by: Thomas Egerer <thomas.egerer@secunet.com> | ||||
* | auth-cfg: Add RSA/PSS schemes for pubkey and rsa if enabled in strongswan.conf | Tobias Brunner | 2017-11-08 | 3 | -16/+88 |
| | | | | Also document the rsa/pss prefix. | ||||
* | pki: Enable PSS padding if enabled in strongswan.conf | Tobias Brunner | 2017-11-08 | 5 | -5/+11 |
| | |||||
* | pki: Optionally generate RSA/PSS signatures | Tobias Brunner | 2017-11-08 | 13 | -45/+179 |
| | |||||
* | pki: Indent usage lines properly automatically | Tobias Brunner | 2017-11-08 | 5 | -13/+13 |
| | |||||
* | Treat RSASSA-PSS keys like rsaEncryption RSA keys | Tobias Brunner | 2017-11-08 | 3 | -1/+20 |
| | | | | | | | | | | In theory we should treat any parameters and the identifier itself as restriction to only use the key to create signatures accordingly (e.g. only use RSA with PSS padding or even use specific hash algorithms). But that's currently tricky as we'd have to store and pass this information along with our private keys (i.e. use PKCS#8 to store them and change the builder calls to pass along the identifier and parameters). That would require quite some work. | ||||
* | openssl: Add support for signature schemes with parameters | Tobias Brunner | 2017-11-08 | 2 | -47/+34 |
| | |||||
* | pki: Properly forward digest to attribute certificate builder | Tobias Brunner | 2017-11-08 | 1 | -0/+1 |
| | |||||
* | x509: Add support for signature schemes with parameters | Tobias Brunner | 2017-11-08 | 5 | -143/+220 |
| | | | | | Also adds support for specifying the hash algorithm for attribute certificate signatures. | ||||
* | builder: Add builder option to pass signature scheme and params | Tobias Brunner | 2017-11-08 | 2 | -1/+4 |
| | |||||
* | ikev2: Use helpers to build signature auth data | Tobias Brunner | 2017-11-08 | 1 | -40/+4 |
| | |||||
* | signature-params: Add helpers to parse/build ASN.1 algorithmIdentifier for ↵ | Tobias Brunner | 2017-11-08 | 3 | -0/+196 |
| | | | | signature schemes | ||||
* | ikev2: Enumerate RSA/PSS schemes and use them if enabled | Tobias Brunner | 2017-11-08 | 5 | -38/+64 |
| | |||||
* | ikev2: Support signing with RSASSA-PSS via RFC 7427 signature auth | Tobias Brunner | 2017-11-08 | 1 | -6/+21 |
| | |||||
* | signature-params: Use helper to build MGF1 algorithmIdentifier | Tobias Brunner | 2017-11-08 | 1 | -2/+2 |
| | |||||
* | asn1: Add helper function to create algorithmIdentifier with parameters | Tobias Brunner | 2017-11-08 | 2 | -6/+23 |
| | |||||
* | ikev2: Verify RSASSA-PSS signatures via RFC 7427 signature auth | Tobias Brunner | 2017-11-08 | 1 | -19/+34 |
| | |||||
* | keymat_v2: Pass/receive signature schemes as signature_param_t objects | Tobias Brunner | 2017-11-08 | 2 | -28/+58 |
| | |||||
* | auth-cfg: Parse rsa/pss auth tokens | Tobias Brunner | 2017-11-08 | 2 | -25/+136 |
| | |||||
* | auth-cfg: Store signature schemes as signature_params_t objects | Tobias Brunner | 2017-11-08 | 10 | -67/+116 |
| | | | | | Due to circular references the hasher_from_signature_scheme() helper does not take a signature_params_t object. | ||||
* | certificate: Return signature scheme and parameters from issued_by() method | Tobias Brunner | 2017-11-08 | 29 | -72/+124 |
| | | | | | This also required some include restructuring (avoid including library.h in headers) to avoid unresolvable circular dependencies. | ||||
* | signature-params: Add helper struct for signature scheme and parameters | Tobias Brunner | 2017-11-08 | 3 | -18/+319 |
| | |||||
* | android: Add support for creating RSASSA-PSS signatures via JNI | Tobias Brunner | 2017-11-08 | 1 | -2/+142 |
| | |||||
* | unit-tests: Add RSA-PSS signature tests with specific salts | Tobias Brunner | 2017-11-08 | 1 | -92/+818 |
| | |||||
* | gcrypt: Add support for static salts when signing with RSA-PSS | Tobias Brunner | 2017-11-08 | 1 | -6/+17 |
| | |||||
* | gmp: Add support for static salts when signing with RSA-PSS | Tobias Brunner | 2017-11-08 | 1 | -2/+6 |
| | |||||
* | signature-params: Optionally pass a specific salt value when signing | Tobias Brunner | 2017-11-08 | 1 | -0/+2 |
| | |||||
* | unit-tests: Warn if we skip RSA tests due to dependencies | Tobias Brunner | 2017-11-08 | 1 | -0/+11 |
| | |||||
* | unit-tests: Add ability to issue a warning message for a test case | Tobias Brunner | 2017-11-08 | 3 | -6/+116 |
| | | | | | This way we can warn if we e.g. skipped actually doing something due to dependencies (otherwise the test case would just appear to have succeeded). |