aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/transforms/diffie_hellman.c
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-12-06 15:10:11 +0000
committerJan Hutter <jhutter@hsr.ch>2005-12-06 15:10:11 +0000
commit1e7d52a611b602f6a60a593e419173d70cd84f0f (patch)
treeba24ea4420e17bd789802b06abfce347eb2c32b0 /Source/charon/transforms/diffie_hellman.c
parentca4468addfa42d9647d90d3310ae16891a53296b (diff)
downloadstrongswan-1e7d52a611b602f6a60a593e419173d70cd84f0f.tar.bz2
strongswan-1e7d52a611b602f6a60a593e419173d70cd84f0f.tar.xz
- code cleaned up
Diffstat (limited to 'Source/charon/transforms/diffie_hellman.c')
-rw-r--r--Source/charon/transforms/diffie_hellman.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/charon/transforms/diffie_hellman.c b/Source/charon/transforms/diffie_hellman.c
index 266c4b3dd..e45b0b368 100644
--- a/Source/charon/transforms/diffie_hellman.c
+++ b/Source/charon/transforms/diffie_hellman.c
@@ -313,12 +313,12 @@ typedef struct modulus_info_entry_t modulus_info_entry_t;
*/
struct modulus_info_entry_t {
/**
- * Group number as it is defined in transform_substructure.h.
+ * Group number as it is defined in file transform_substructure.h.
*/
diffie_hellman_group_t group;
/**
- * Pointer to first byte of modulus in (network order).
+ * Pointer to first byte of modulus (network order).
*/
u_int8_t *modulus;
@@ -491,7 +491,6 @@ static void compute_shared_secret (private_diffie_hellman_t *this)
this->shared_secret_is_computed = TRUE;
}
-
/**
* Implementation of private_diffie_hellman_t.compute_public_value.
*/
@@ -549,7 +548,6 @@ static void destroy(private_diffie_hellman_t *this)
allocator_free(this);
}
-
/*
* Described in header.
*/