aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon
Commit message (Collapse)AuthorAgeFilesLines
...
| | * Updates ike_cert_post task with modifications needed for dealing with ↵Clavister OpenSource2012-03-201-5/+5
| | | | | | | | | | | | updated cert_payload class.
| | * IKEv1 ConfigMode: Added the payload handlers for attribute_payload and ↵Clavister OpenSource2012-03-204-0/+672
| | | | | | | | | | | | data_attribute payload types.
| | * IKEv1 ConfigMode: Added TRANSACTION exchange type. Added attribute_payload ↵Clavister OpenSource2012-03-206-20/+78
| | | | | | | | | | | | (IKEv2 equiv cp_payload) and data_attribute (IKEv2 equiv configuration_attribute) payload types. Did not combine with IKEv2 because it wasn't trivial to do so. This might be a task worth investigating in the future, because there is a decent amount of shared code here.
| | * Updated the CERT payload to work for both IKEv1 and IKEv2.Clavister OpenSource2012-03-202-14/+25
| | |
| | * Parse proposal substructure with multiple IKEv1 transforms to multiple proposalsMartin Willi2012-03-203-34/+33
| | |
| | * Encode multiple IKEv1 proposals in a single transform substructureMartin Willi2012-03-203-13/+74
| | |
| | * Remove public sa_payload.add_proposal() methodMartin Willi2012-03-202-18/+12
| | |
| | * Only add the first algorithm of a kind to IKEv1 transformsMartin Willi2012-03-201-4/+4
| | |
| | * Install negotiated IKEv1 CHILD_SA negotiated in quick modeMartin Willi2012-03-201-0/+163
| | |
| | * Implemented IKEv1 keymat CHILD_SA key derivation functionMartin Willi2012-03-202-0/+131
| | |
| | * Moved keymat key length lookup functions to keymat.cMartin Willi2012-03-203-55/+75
| | |
| | * Extended PRF+ by a non-counting variant as used by IKEv1Martin Willi2012-03-201-3/+3
| | |
| | * Hardcode some SA lifetimes until we can configure them dynamicallyMartin Willi2012-03-201-0/+12
| | |
| | * Added missing comma after ME_CONNECT declaration.Tobias Brunner2012-03-201-13/+14
| | |
| | * Fixed creation of endpoint notifies.Tobias Brunner2012-03-201-1/+1
| | |
| | * Fixed diagram of IKEv1 encrypted "payload".Tobias Brunner2012-03-201-2/+0
| | |
| | * Refactored main mode NONCE/KE payload processingMartin Willi2012-03-201-76/+63
| | |
| | * Refactored main mode HASH payload processingMartin Willi2012-03-201-60/+56
| | |
| | * Skip any payloads in front of SA to extract initiators SA bytesMartin Willi2012-03-201-10/+24
| | |
| | * Implemented quick mode protocol handling, no CHILD_SA or HASH payloads yetMartin Willi2012-03-202-7/+294
| | |
| | * Partially implemented IKEv1 ESP proposal en-/decodingMartin Willi2012-03-201-2/+73
| | |
| | * Add missing keymat cast to avoid compiler warningMartin Willi2012-03-201-1/+1
| | |
| | * Don't compare initiator flag in IKE_SA manager, pass initiator parameter to ↵Martin Willi2012-03-205-20/+13
| | | | | | | | | | | | IKE_SA constructor
| | * Create and verify PSK HASH payloads in IKEv1 main modeMartin Willi2012-03-201-9/+117
| | |
| | * Added keymat_v1_t.get_hash() to calculate authentication hashesMartin Willi2012-03-202-0/+53
| | |
| | * Register HASH_V1 in payload factoryMartin Willi2012-03-201-0/+3
| | |
| | * Derive IKE keys as IKEv1 initiator, tooMartin Willi2012-03-201-0/+6
| | |
| | * Fix payload length of id_payload created from a traffic selectorMartin Willi2012-03-201-0/+1
| | |
| | * String for ENCRYPTED_DATA fixed.Tobias Brunner2012-03-201-1/+1
| | |
| | * Strings for ENCRYPTED_V1 payload added.Tobias Brunner2012-03-201-10/+14
| | |
| | * Set flags on message according to IKE version when parsing header.Tobias Brunner2012-03-201-2/+8
| | |
| | * Encrypt IKEv1 messages.Tobias Brunner2012-03-201-17/+66
| | |
| | * Decrypt IKEv1 messages.Tobias Brunner2012-03-201-3/+43
| | |
| | * Added IV generation to keymat_v1_t.Tobias Brunner2012-03-202-0/+229
| | |
| | * Use modified encryption payload to encrypt/decrypt complete IKEv1 messages.Tobias Brunner2012-03-208-15/+156
| | |
| | * Use key derivation in IKEv1 main mode (PSK authentication).Tobias Brunner2012-03-201-1/+80
| | |
| | * Added a simple AEAD wrapper for IKEv1 encryption/decryption.Tobias Brunner2012-03-201-1/+155
| | |
| | * Added IKEv1 key derivation with support for AUTH_CLASS_PSK.Tobias Brunner2012-03-202-16/+190
| | |
| | * Update cached hosts on ike_sa_t when processing IKEv1 messages.Tobias Brunner2012-03-201-1/+7
| | |
| | * Provide keymat_t to message_t to encrypt/decrypt data.Tobias Brunner2012-03-203-18/+17
| | |
| | * Avoid compiler warnings due to extended enums.Tobias Brunner2012-03-202-2/+2
| | |
| | * Moved version specific keymat functions to specific interfaces.Tobias Brunner2012-03-209-143/+136
| | |
| | * Added a generic TASK_ prefix to all task typesMartin Willi2012-03-2031-108/+109
| | |
| | * Initiate and respond to quick mode task (stub)Martin Willi2012-03-202-5/+18
| | |
| | * Print message ID as unsigned integerMartin Willi2012-03-201-1/+1
| | |
| | * Added message encoding rules for quick modeMartin Willi2012-03-201-0/+65
| | |
| | * Fixed reference counting bugs in main modeMartin Willi2012-03-201-1/+2
| | |
| | * Implemented basic message id handling for IKEv1Martin Willi2012-03-201-24/+47
| | |
| | * Added a quick mode task stubMartin Willi2012-03-205-2/+223
| | |
| | * Fixed length calculation of delete payloadMartin Willi2012-03-201-3/+5
| | |