summaryrefslogtreecommitdiff
path: root/lib/nettle
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2011-08-02 21:32:32 +0200
committerSimon Josefsson <simon@josefsson.org>2011-08-02 21:34:06 +0200
commitcb4407d2c74562724a3922955271c07c944e9acb (patch)
tree73ac284641bc1769dc26cbddf2b4b91cf52df88c /lib/nettle
parentf7545b3beb54c33f38b457d2e03c970777f235ba (diff)
downloadgnutls-cb4407d2c74562724a3922955271c07c944e9acb.tar.gz
Fix GTK-DOC manual.
Diffstat (limited to 'lib/nettle')
-rw-r--r--lib/nettle/ecc_free.c4
-rw-r--r--lib/nettle/ecc_make_key.c4
-rw-r--r--lib/nettle/ecc_map.c4
-rw-r--r--lib/nettle/ecc_mulmod.c4
-rw-r--r--lib/nettle/ecc_points.c6
-rw-r--r--lib/nettle/ecc_projective_add_point.c4
-rw-r--r--lib/nettle/ecc_projective_dbl_point.c2
-rw-r--r--lib/nettle/ecc_projective_dbl_point_3.c4
-rw-r--r--lib/nettle/ecc_shared_secret.c4
-rw-r--r--lib/nettle/ecc_sign_hash.c4
-rw-r--r--lib/nettle/ecc_verify_hash.c4
11 files changed, 22 insertions, 22 deletions
diff --git a/lib/nettle/ecc_free.c b/lib/nettle/ecc_free.c
index bdc244e525..a07d107e2b 100644
--- a/lib/nettle/ecc_free.c
+++ b/lib/nettle/ecc_free.c
@@ -24,12 +24,12 @@
#include "ecc.h"
-/**
+/*
@file ecc_free.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Free an ECC key from memory
@param key The key you wish to free
*/
diff --git a/lib/nettle/ecc_make_key.c b/lib/nettle/ecc_make_key.c
index a86608df36..ba19e3d096 100644
--- a/lib/nettle/ecc_make_key.c
+++ b/lib/nettle/ecc_make_key.c
@@ -24,12 +24,12 @@
#include "ecc.h"
-/**
+/*
@file ecc_make_key.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Make a new ECC key
@param prng An active PRNG state
@param wprng The index of the PRNG you wish to use
diff --git a/lib/nettle/ecc_map.c b/lib/nettle/ecc_map.c
index 501e61ceeb..a08f720499 100644
--- a/lib/nettle/ecc_map.c
+++ b/lib/nettle/ecc_map.c
@@ -24,12 +24,12 @@
#include "ecc.h"
-/**
+/*
@file ecc_map.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Map a projective jacobian point back to affine space
@param P [in/out] The point to map
@param modulus The modulus of the field the ECC curve is in
diff --git a/lib/nettle/ecc_mulmod.c b/lib/nettle/ecc_mulmod.c
index d43aa05669..e4f8f99dc7 100644
--- a/lib/nettle/ecc_mulmod.c
+++ b/lib/nettle/ecc_mulmod.c
@@ -24,12 +24,12 @@
#include "ecc.h"
-/**
+/*
@file ecc_mulmod_timing.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Perform a point multiplication (timing resistant)
@param k The scalar to multiply by
@param G The base point
diff --git a/lib/nettle/ecc_points.c b/lib/nettle/ecc_points.c
index c1a90aa8d2..44f1350a34 100644
--- a/lib/nettle/ecc_points.c
+++ b/lib/nettle/ecc_points.c
@@ -24,12 +24,12 @@
#include "ecc.h"
-/**
+/*
@file ecc_points.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Allocate a new ECC point
@return A newly allocated point or NULL on error
*/
@@ -50,7 +50,7 @@ ecc_new_point (void)
return p;
}
-/** Free an ECC point from memory
+/* Free an ECC point from memory
@param p The point to free
*/
void
diff --git a/lib/nettle/ecc_projective_add_point.c b/lib/nettle/ecc_projective_add_point.c
index 30c4cbb294..912f849ad4 100644
--- a/lib/nettle/ecc_projective_add_point.c
+++ b/lib/nettle/ecc_projective_add_point.c
@@ -24,12 +24,12 @@
#include "ecc.h"
-/**
+/*
@file ecc_projective_add_point.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Add two ECC points
@param P The point to add
@param Q The point to add
diff --git a/lib/nettle/ecc_projective_dbl_point.c b/lib/nettle/ecc_projective_dbl_point.c
index 859ebd43d9..2b2ce2d23c 100644
--- a/lib/nettle/ecc_projective_dbl_point.c
+++ b/lib/nettle/ecc_projective_dbl_point.c
@@ -26,7 +26,7 @@
#ifndef ECC_SECP_CURVES_ONLY
-/**
+/*
Double an ECC point
@param P The point to double
@param R [out] The destination of the double
diff --git a/lib/nettle/ecc_projective_dbl_point_3.c b/lib/nettle/ecc_projective_dbl_point_3.c
index c48a947aac..8695044c48 100644
--- a/lib/nettle/ecc_projective_dbl_point_3.c
+++ b/lib/nettle/ecc_projective_dbl_point_3.c
@@ -24,14 +24,14 @@
#include "ecc.h"
-/**
+/*
@file ecc_projective_dbl_point.c
ECC Crypto, Tom St Denis
*/
#ifdef ECC_SECP_CURVES_ONLY
-/**
+/*
Double an ECC point
@param P The point to double
@param R [out] The destination of the double
diff --git a/lib/nettle/ecc_shared_secret.c b/lib/nettle/ecc_shared_secret.c
index 2adea7c95b..85246a159d 100644
--- a/lib/nettle/ecc_shared_secret.c
+++ b/lib/nettle/ecc_shared_secret.c
@@ -25,12 +25,12 @@
#include "ecc.h"
#include <string.h>
-/**
+/*
@file ecc_shared_secret.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Create an ECC shared secret between two keys
@param private_key The private ECC key
@param public_key The public key
diff --git a/lib/nettle/ecc_sign_hash.c b/lib/nettle/ecc_sign_hash.c
index af395dbae6..1993656fdb 100644
--- a/lib/nettle/ecc_sign_hash.c
+++ b/lib/nettle/ecc_sign_hash.c
@@ -25,12 +25,12 @@
#include "ecc.h"
#include <nettle/dsa.h>
-/**
+/*
@file ecc_sign_hash.c
ECC Crypto, Tom St Denis
*/
-/**
+/*
Sign a message digest
@param in The message digest to sign
@param inlen The length of the digest
diff --git a/lib/nettle/ecc_verify_hash.c b/lib/nettle/ecc_verify_hash.c
index 4f4ddbb049..3a6b2f70cd 100644
--- a/lib/nettle/ecc_verify_hash.c
+++ b/lib/nettle/ecc_verify_hash.c
@@ -24,7 +24,7 @@
#include "ecc.h"
-/**
+/*
@file ecc_verify_hash.c
ECC Crypto, Tom St Denis
*/
@@ -39,7 +39,7 @@
* accept if v == r
*/
-/**
+/*
Verify an ECC signature
@param signature The signature to verify
@param hash The hash (message digest) that was signed