diff options
Diffstat (limited to 'Source/charon/transforms')
-rw-r--r-- | Source/charon/transforms/crypters/crypter.h | 2 | ||||
-rw-r--r-- | Source/charon/transforms/diffie_hellman.h | 2 | ||||
-rw-r--r-- | Source/charon/transforms/prf_plus.h | 4 | ||||
-rw-r--r-- | Source/charon/transforms/prfs/prf.h | 2 | ||||
-rw-r--r-- | Source/charon/transforms/signers/signer.h | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/Source/charon/transforms/crypters/crypter.h b/Source/charon/transforms/crypters/crypter.h index 7f371de8a..9c219f5cc 100644 --- a/Source/charon/transforms/crypters/crypter.h +++ b/Source/charon/transforms/crypters/crypter.h @@ -28,7 +28,7 @@ typedef enum encryption_algorithm_t encryption_algorithm_t; /** - * @brief Encryption algorithm, as in IKEv2 draft 3.3.2. + * @brief Encryption algorithm, as in IKEv2 RFC 3.3.2. * * Currently only the following algorithms are implemented and therefore supported: * - ENCR_AES_CBC diff --git a/Source/charon/transforms/diffie_hellman.h b/Source/charon/transforms/diffie_hellman.h index d4f956325..9a3608aea 100644 --- a/Source/charon/transforms/diffie_hellman.h +++ b/Source/charon/transforms/diffie_hellman.h @@ -33,7 +33,7 @@ typedef enum diffie_hellman_group_t diffie_hellman_group_t; * * The modulus (or group) to use for a Diffie-Hellman calculation. * - * See IKEv2 draft 3.3.2 and RFC 3526. + * See IKEv2 RFC 3.3.2 and RFC 3526. * * @warning Use of big modulus sizes can be cpu consuming. * diff --git a/Source/charon/transforms/prf_plus.h b/Source/charon/transforms/prf_plus.h index 538724c48..829191786 100644 --- a/Source/charon/transforms/prf_plus.h +++ b/Source/charon/transforms/prf_plus.h @@ -30,12 +30,12 @@ typedef struct prf_plus_t prf_plus_t; /** - * @brief Implementation of the prf+ function described in IKEv2 draft. + * @brief Implementation of the prf+ function described in IKEv2 RFC. * * This class implements the prf+ algorithm. Internally it uses a pseudo random * function, which implements the prf_t interface. * - * See IKEv2 draft 2.13. + * See IKEv2 RFC 2.13. * * @b Constructors: * - prf_plus_create() diff --git a/Source/charon/transforms/prfs/prf.h b/Source/charon/transforms/prfs/prf.h index 17b1110b2..b1c1e6a66 100644 --- a/Source/charon/transforms/prfs/prf.h +++ b/Source/charon/transforms/prfs/prf.h @@ -28,7 +28,7 @@ typedef enum pseudo_random_function_t pseudo_random_function_t; /** - * @brief Pseudo random function, as in IKEv2 draft 3.3.2. + * @brief Pseudo random function, as in IKEv2 RFC 3.3.2. * * Currently only the following algorithms are implemented and therefore supported: * - PRF_HMAC_MD5 diff --git a/Source/charon/transforms/signers/signer.h b/Source/charon/transforms/signers/signer.h index 1c339178c..9625af813 100644 --- a/Source/charon/transforms/signers/signer.h +++ b/Source/charon/transforms/signers/signer.h @@ -29,7 +29,7 @@ typedef enum integrity_algorithm_t integrity_algorithm_t; /** - * @brief Integrity algorithm, as in IKEv2 draft 3.3.2. + * @brief Integrity algorithm, as in IKEv2 RFC 3.3.2. * * Currently only the following algorithms are implemented and therefore supported: * - AUTH_HMAC_MD5_96 |