summaryrefslogtreecommitdiff
path: root/src/include/taler_crypto_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2015-04-10 22:18:50 +0200
committerChristian Grothoff <christian@grothoff.org>2015-04-10 22:18:50 +0200
commitdd63d2f8462175a1636f5ea05fd8d75d66887ceb (patch)
tree6530ca821a732fabf0c23f74b13ccb8f110e5734 /src/include/taler_crypto_lib.h
parentd04360879ef1719ecdffd7fa202c53463550b691 (diff)
downloadexchange-dd63d2f8462175a1636f5ea05fd8d75d66887ceb.tar.gz
exchange-dd63d2f8462175a1636f5ea05fd8d75d66887ceb.tar.bz2
exchange-dd63d2f8462175a1636f5ea05fd8d75d66887ceb.zip
fix type of transfer keys
Diffstat (limited to 'src/include/taler_crypto_lib.h')
-rw-r--r--src/include/taler_crypto_lib.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h
index d2fd2598b..d7d12354a 100644
--- a/src/include/taler_crypto_lib.h
+++ b/src/include/taler_crypto_lib.h
@@ -101,9 +101,8 @@ struct TALER_TransferPublicKeyP
{
/**
* Taler uses ECDSA for transfer keys.
- * FIXME: should this not be ECDHE?
*/
- struct GNUNET_CRYPTO_EcdsaPublicKey ecdsa_pub;
+ struct GNUNET_CRYPTO_EcdhePublicKey ecdhe_pub;
};
@@ -115,9 +114,8 @@ struct TALER_TransferPrivateKeyP
{
/**
* Taler uses ECDSA for melting session keys.
- * FIXME: should this not be ECDHE?
*/
- struct GNUNET_CRYPTO_EcdsaPrivateKey ecdsa_priv;
+ struct GNUNET_CRYPTO_EcdhePrivateKey ecdhe_priv;
};