aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/transforms/prfs/prf.h
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-11-24 11:30:19 +0000
committerMartin Willi <martin@strongswan.org>2005-11-24 11:30:19 +0000
commit5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch)
tree4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/transforms/prfs/prf.h
parent95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff)
downloadstrongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2
strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz
- typedefs changed
Diffstat (limited to 'Source/charon/transforms/prfs/prf.h')
-rw-r--r--Source/charon/transforms/prfs/prf.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/Source/charon/transforms/prfs/prf.h b/Source/charon/transforms/prfs/prf.h
index da624a0f0..2b6aab46e 100644
--- a/Source/charon/transforms/prfs/prf.h
+++ b/Source/charon/transforms/prfs/prf.h
@@ -26,12 +26,14 @@
#include <encoding/payloads/transform_substructure.h>
+typedef struct prf_t prf_t;
+
/**
* Object representing a diffie hellman exchange
+ *
+ * @ingroup prfs
*/
-typedef struct prf_s prf_t;
-
-struct prf_s {
+struct prf_t {
/**
* @brief generates pseudo random bytes and writes them
* in the buffer
@@ -89,6 +91,8 @@ struct prf_s {
* @return
* - prf_t if successfully
* - NULL if out of ressources or prf not supported
+ *
+ * @ingroup prfs
*/
prf_t *prf_create(pseudo_random_function_t pseudo_random_function);