diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-04-10 22:18:50 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-04-10 22:18:50 +0200 |
commit | dd63d2f8462175a1636f5ea05fd8d75d66887ceb (patch) | |
tree | 6530ca821a732fabf0c23f74b13ccb8f110e5734 /src/include | |
parent | d04360879ef1719ecdffd7fa202c53463550b691 (diff) |
fix type of transfer keys
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/taler_crypto_lib.h | 6 |
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; }; |