diff options
author | Martin Willi <martin@strongswan.org> | 2006-03-07 09:42:15 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-03-07 09:42:15 +0000 |
commit | 8a4911290753eb3b4d3070ed9097d7cbcd2fd349 (patch) | |
tree | ce5cbaf9364ace55fd324b5967652cc32b0c5797 /Source/charon/encoding/payloads/auth_payload.h | |
parent | aa5a35a0056a50c563af9fa1d7c808e1f869405c (diff) | |
download | strongswan-8a4911290753eb3b4d3070ed9097d7cbcd2fd349.tar.bz2 strongswan-8a4911290753eb3b4d3070ed9097d7cbcd2fd349.tar.xz |
- configuration_manager replaced by configuration_t interface
- current configuration_manager is now static_configuration (testing)
- first draft of starter_configuration, which should once interact with ipsec starter (via whack?)
- some cleanups
- socket_t uses RAW socket, which allows parallel service of pluto/charon
Diffstat (limited to 'Source/charon/encoding/payloads/auth_payload.h')
-rw-r--r-- | Source/charon/encoding/payloads/auth_payload.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/charon/encoding/payloads/auth_payload.h b/Source/charon/encoding/payloads/auth_payload.h index 7be3859aa..1df867356 100644 --- a/Source/charon/encoding/payloads/auth_payload.h +++ b/Source/charon/encoding/payloads/auth_payload.h @@ -44,19 +44,19 @@ typedef enum auth_method_t auth_method_t; */ enum auth_method_t { /** - * Computed as specified in section 2.15 of draft using + * Computed as specified in section 2.15 of RFC using * an RSA private key over a PKCS#1 padded hash. */ RSA_DIGITAL_SIGNATURE = 1, /* Computed as specified in - * section 2.15 of draft using the shared key associated with the identity + * section 2.15 of RFC using the shared key associated with the identity * in the ID payload and the negotiated prf function */ SHARED_KEY_MESSAGE_INTEGRITY_CODE = 2, /* Computed as specified in section - * 2.15 of draft using a DSS private key over a SHA-1 hash. + * 2.15 of RFC using a DSS private key over a SHA-1 hash. */ DSS_DIGITAL_SIGNATURE = 3, }; @@ -74,7 +74,7 @@ typedef struct auth_payload_t auth_payload_t; /** * @brief Class representing an IKEv2 AUTH payload. * - * The AUTH payload format is described in draft section 3.8. + * The AUTH payload format is described in RFC section 3.8. * * @b Constructors: * - auth_payload_create() |