From 0c237db66a4e4dd65ed913b684d1fe1e6a7459fc Mon Sep 17 00:00:00 2001 From: Jeremy Lakeman Date: Thu, 25 Jul 2013 14:46:34 +0930 Subject: [PATCH] Add API to create bundles with deterministic ID's --- rhizome.h | 1 + rhizome_crypto.c | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/rhizome.h b/rhizome.h index efe8f531..404a3738 100644 --- a/rhizome.h +++ b/rhizome.h @@ -210,6 +210,7 @@ struct rhizome_cleanup_report { int rhizome_cleanup(struct rhizome_cleanup_report *report); int rhizome_manifest_createid(rhizome_manifest *m); +int rhizome_get_bundle_from_seed(rhizome_manifest *m, const char *seed); int rhizome_strn_is_manifest_id(const char *text); int rhizome_str_is_manifest_id(const char *text); int rhizome_strn_is_bundle_key(const char *text); diff --git a/rhizome_crypto.c b/rhizome_crypto.c index fafce4bc..edc41416 100644 --- a/rhizome_crypto.c +++ b/rhizome_crypto.c @@ -45,6 +45,45 @@ int rhizome_manifest_createid(rhizome_manifest *m) return 0; } +struct signing_key{ + unsigned char Private[crypto_sign_edwards25519sha512batch_SECRETKEYBYTES]; + unsigned char Public[crypto_sign_edwards25519sha512batch_PUBLICKEYBYTES]; +}; + +/* generate a keypair from a given seed string */ +static int generate_keypair(const char *seed, struct signing_key *key) +{ + unsigned char hash[crypto_hash_sha512_BYTES]; + crypto_hash_sha512(hash, (unsigned char *)seed, strlen(seed)); + + // The first 256 bits of the hash will be used as the private key of the BID. + bcopy(hash, key->Private, sizeof(key->Private)); + if (crypto_sign_compute_public_key(key->Private, key->Public)) + return WHY("Could not generate public key"); + return 0; +} + +/* Generate a bundle id deterministically from the given seed. + * Then either fetch it from the database or initialise a new empty manifest */ +int rhizome_get_bundle_from_seed(rhizome_manifest *m, const char *seed) +{ + struct signing_key key; + if (generate_keypair(seed, &key)) + return -1; + + char *id = alloca_tohex_bid(key.Public); + + int ret=rhizome_retrieve_manifest(id, m); + if (ret<0) + return -1; + + m->haveSecret=(ret==0)?EXISTING_BUNDLE_ID:NEW_BUNDLE_ID; + bcopy(key.Public, m->cryptoSignPublic, sizeof(m->cryptoSignPublic)); + bcopy(key.Private, m->cryptoSignSecret, sizeof(m->cryptoSignSecret)); + + return ret; +} + /* Given a Rhizome Secret (RS) and bundle ID (BID), XOR a bundle key 'bkin' (private or public) with * RS##BID. This derives the first 32-bytes of the secret key. The BID itself as * public key is also the last 32-bytes of the secret key.