diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-10-10 14:38:55 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-10-10 14:38:55 +0000 |
commit | 9351b1e9bdf2b067b6db06562c26ba658cff42b8 (patch) | |
tree | 68dc4ab447e7e8b6a20a706858cd36238c1c7c5f /src/fs/fs_api.c | |
parent | 8beabcd96c0cf1e1873c0b5ff96e537f1beb0b34 (diff) |
separating ECC crypto into functions/structs for ECDHE, ECDSA and EDDSA
Diffstat (limited to 'src/fs/fs_api.c')
-rw-r--r-- | src/fs/fs_api.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fs/fs_api.c b/src/fs/fs_api.c index 04057bc988..688bdf282c 100644 --- a/src/fs/fs_api.c +++ b/src/fs/fs_api.c @@ -1477,7 +1477,7 @@ deserialize_publish_file (void *cls, const char *filename) int32_t all_done; int32_t have_ns; char *fi_root; - struct GNUNET_CRYPTO_EccPrivateKey ns; + struct GNUNET_CRYPTO_EcdsaPrivateKey ns; char *fi_pos; char *emsg; @@ -1522,7 +1522,7 @@ deserialize_publish_file (void *cls, const char *filename) } if (GNUNET_YES == have_ns) { - pc->ns = GNUNET_new (struct GNUNET_CRYPTO_EccPrivateKey); + pc->ns = GNUNET_new (struct GNUNET_CRYPTO_EcdsaPrivateKey); *pc->ns = ns; } if ((0 == (pc->options & GNUNET_FS_PUBLISH_OPTION_SIMULATE_ONLY)) && @@ -1637,7 +1637,7 @@ GNUNET_FS_publish_sync_ (struct GNUNET_FS_PublishContext *pc) ( (NULL != pc->ns) && (GNUNET_OK != GNUNET_BIO_write (wh, pc->ns, - sizeof (struct GNUNET_CRYPTO_EccPrivateKey)) ) )) + sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)) ) )) { GNUNET_break (0); goto cleanup; |