aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_crypto_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-08-08 05:36:25 +0000
committerChristian Grothoff <christian@grothoff.org>2013-08-08 05:36:25 +0000
commit2175ed0fc9d4cdf346e0605d397836b241d6cf75 (patch)
tree1e83a7f6511e955ae4acaf8dfafdf30ea111320b /src/include/gnunet_crypto_lib.h
parentea35c26d5a29adb855b62de6cf81162cd5faf6d3 (diff)
downloadgnunet-2175ed0fc9d4cdf346e0605d397836b241d6cf75.tar.gz
gnunet-2175ed0fc9d4cdf346e0605d397836b241d6cf75.zip
-doxygen fixes
Diffstat (limited to 'src/include/gnunet_crypto_lib.h')
-rw-r--r--src/include/gnunet_crypto_lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 52bb983b0..1704fce07 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -929,13 +929,13 @@ GNUNET_CRYPTO_get_host_identity (const struct GNUNET_CONFIGURATION_Handle *cfg,
929/** 929/**
930 * Derive key material from a public and a private ECC key. 930 * Derive key material from a public and a private ECC key.
931 * 931 *
932 * @param key private key to use for the ECDH (x) 932 * @param priv private key to use for the ECDH (x)
933 * @param pub public key to use for the ECDY (yG) 933 * @param pub public key to use for the ECDY (yG)
934 * @param key_material where to write the key material (xyG) 934 * @param key_material where to write the key material (xyG)
935 * @return GNUNET_SYSERR on error, GNUNET_OK on success 935 * @return GNUNET_SYSERR on error, GNUNET_OK on success
936 */ 936 */
937int 937int
938GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EccPrivateKey *key, 938GNUNET_CRYPTO_ecc_ecdh (const struct GNUNET_CRYPTO_EccPrivateKey *priv,
939 const struct GNUNET_CRYPTO_EccPublicKey *pub, 939 const struct GNUNET_CRYPTO_EccPublicKey *pub,
940 struct GNUNET_HashCode *key_material); 940 struct GNUNET_HashCode *key_material);
941 941