AUTHENTICATION = 39,
/**
- * Nonces, for initator and responder (Ni, Nr, N)
+ * Nonces, for initiator and responder (Ni, Nr, N)
*/
NONCE = 40,
if (!transport_proxy_mode)
{
- /* update our (initator) SA */
+ /* update our (initiator) SA */
if (this->my_spi)
{
if (hydra->kernel_interface->update_sa(hydra->kernel_interface,
* Create a new task of type IKE_AUTHENTICATE.
*
* @param ike_sa IKE_SA this task works for
- * @param initiator TRUE if thask is the initator of an exchange
+ * @param initiator TRUE if thask is the initiator of an exchange
* @return ike_auth task to handle by the task_manager
*/
ike_auth_t *ike_auth_create(ike_sa_t *ike_sa, bool initiator);
* of the certificate request.
*
* @param ike_sa IKE_SA this task works for
- * @param initiator TRUE if thask is the original initator
+ * @param initiator TRUE if thask is the original initiator
* @return ike_cert_post task to handle by the task_manager
*/
ike_cert_post_t *ike_cert_post_create(ike_sa_t *ike_sa, bool initiator);
* of the certificate request.
*
* @param ike_sa IKE_SA this task works for
- * @param initiator TRUE if thask is the original initator
+ * @param initiator TRUE if thask is the original initiator
* @return ike_cert_pre task to handle by the task_manager
*/
ike_cert_pre_t *ike_cert_pre_create(ike_sa_t *ike_sa, bool initiator);
/**
* Create a new ike_dpd task.
*
- * @param initiator TRUE if thask is the original initator
+ * @param initiator TRUE if thask is the original initiator
* @return ike_dpd task to handle by the task_manager
*/
ike_dpd_t *ike_dpd_create(bool initiator);
* Create a new IKE_INIT task.
*
* @param ike_sa IKE_SA this task works for (new one when rekeying)
- * @param initiator TRUE if thask is the original initator
+ * @param initiator TRUE if thask is the original initiator
* @param old_sa old IKE_SA when we are rekeying
* @return ike_init task to handle by the task_manager
*/
* Create a new ike_natd task.
*
* @param ike_sa IKE_SA this task works for
- * @param initiator TRUE if thask is the original initator
+ * @param initiator TRUE if thask is the original initiator
* @return ike_natd task to handle by the task_manager
*/
ike_natd_t *ike_natd_create(ike_sa_t *ike_sa, bool initiator);
* Create a ike_vendor instance.
*
* @param ike_sa IKE_SA this task works for
- * @param initiator TRUE if thask is the original initator
+ * @param initiator TRUE if thask is the original initiator
*/
ike_vendor_t *ike_vendor_create(ike_sa_t *ike_sa, bool initiator);
/**
* Message authentication using CBC crypter.
*
- * This class implements the message authenticaion algorithm
+ * This class implements the message authentication algorithm
* described in RFC3566.
*/
struct xcbc_t {