aboutsummaryrefslogtreecommitdiff
path: root/src/revocation/revocation.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-10-10 14:38:55 +0000
committerChristian Grothoff <christian@grothoff.org>2013-10-10 14:38:55 +0000
commit9351b1e9bdf2b067b6db06562c26ba658cff42b8 (patch)
tree68dc4ab447e7e8b6a20a706858cd36238c1c7c5f /src/revocation/revocation.h
parent8beabcd96c0cf1e1873c0b5ff96e537f1beb0b34 (diff)
downloadgnunet-9351b1e9bdf2b067b6db06562c26ba658cff42b8.tar.gz
gnunet-9351b1e9bdf2b067b6db06562c26ba658cff42b8.zip
separating ECC crypto into functions/structs for ECDHE, ECDSA and EDDSA
Diffstat (limited to 'src/revocation/revocation.h')
-rw-r--r--src/revocation/revocation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/revocation/revocation.h b/src/revocation/revocation.h
index b13d79a37..48c284a4d 100644
--- a/src/revocation/revocation.h
+++ b/src/revocation/revocation.h
@@ -48,7 +48,7 @@ struct QueryMessage
48 /** 48 /**
49 * Key to check. 49 * Key to check.
50 */ 50 */
51 struct GNUNET_CRYPTO_EccPublicSignKey key; 51 struct GNUNET_CRYPTO_EcdsaPublicKey key;
52 52
53}; 53};
54 54
@@ -98,7 +98,7 @@ struct RevokeMessage
98 /** 98 /**
99 * Signature confirming revocation. 99 * Signature confirming revocation.
100 */ 100 */
101 struct GNUNET_CRYPTO_EccSignature signature; 101 struct GNUNET_CRYPTO_EcdsaSignature signature;
102 102
103 /** 103 /**
104 * Must have purpose #GNUNET_SIGNATURE_PURPOSE_REVOCATION, 104 * Must have purpose #GNUNET_SIGNATURE_PURPOSE_REVOCATION,
@@ -109,7 +109,7 @@ struct RevokeMessage
109 /** 109 /**
110 * Key to revoke. 110 * Key to revoke.
111 */ 111 */
112 struct GNUNET_CRYPTO_EccPublicSignKey public_key; 112 struct GNUNET_CRYPTO_EcdsaPublicKey public_key;
113 113
114}; 114};
115 115