2015-06-09 17:35:33 +02:00
|
|
|
/*
|
2015-06-10 14:59:14 +02:00
|
|
|
This file is part of TALER
|
|
|
|
Copyright (C) 2014, 2015 Christian Grothoff (and other contributing authors)
|
2015-06-09 17:35:33 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
2015-06-09 17:35:33 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
2015-06-09 17:35:33 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
TALER; see the file COPYING. If not, If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*/
|
2015-06-09 17:35:33 +02:00
|
|
|
/**
|
|
|
|
* @file mintdb/perf_taler_mintdb_init.c
|
|
|
|
* @brief Interpreter library for mint database performance analysis
|
|
|
|
* @author Nicolas Fournier
|
|
|
|
*/
|
2015-06-12 09:09:42 +02:00
|
|
|
#include "platform.h"
|
|
|
|
#include "perf_taler_mintdb_init.h"
|
2015-06-09 13:03:37 +02:00
|
|
|
#include <gnunet/gnunet_signatures.h>
|
2015-06-12 09:09:42 +02:00
|
|
|
#include "taler_signatures.h"
|
|
|
|
#include "taler_amount_lib.h"
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
|
2015-06-09 17:35:33 +02:00
|
|
|
#define CURRENCY "EUR"
|
2015-06-17 17:24:08 +02:00
|
|
|
#define PERF_TALER_MINTDB_RSA_SIZE 256
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
|
2015-06-11 15:55:46 +02:00
|
|
|
/**
|
|
|
|
* @return a randomly generated CollectableBlindcoin
|
|
|
|
*/
|
2015-06-09 13:03:37 +02:00
|
|
|
struct TALER_MINTDB_CollectableBlindcoin *
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_collectable_blindcoin_init ()
|
2015-06-09 13:55:05 +02:00
|
|
|
{
|
2015-06-12 11:14:32 +02:00
|
|
|
uint32_t random_int;
|
2015-06-12 09:09:42 +02:00
|
|
|
struct GNUNET_CRYPTO_rsa_PrivateKey *denomination_key;
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *reserve_sig_key;
|
2015-06-12 11:14:32 +02:00
|
|
|
struct {
|
|
|
|
struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
|
|
|
|
uint32_t data;
|
|
|
|
} unsigned_data;
|
|
|
|
struct TALER_MINTDB_CollectableBlindcoin *coin;
|
|
|
|
|
2015-06-09 13:55:05 +02:00
|
|
|
|
2015-06-12 11:14:32 +02:00
|
|
|
coin = GNUNET_new (struct TALER_MINTDB_CollectableBlindcoin);
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(reserve_sig_key = GNUNET_CRYPTO_eddsa_key_create ()));
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(denomination_key = GNUNET_CRYPTO_rsa_private_key_create (512)));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (NULL ==
|
2015-06-12 11:14:32 +02:00
|
|
|
(coin->denom_pub.rsa_public_key =
|
|
|
|
GNUNET_CRYPTO_rsa_private_key_get_public (denomination_key)));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (reserve_sig_key,
|
2015-06-12 11:14:32 +02:00
|
|
|
&coin->reserve_pub.eddsa_pub);
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
TALER_string_to_amount (CURRENCY ":1.1",
|
|
|
|
&coin->amount_with_fee));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
TALER_string_to_amount (CURRENCY ":1.1",
|
|
|
|
&coin->withdraw_fee));
|
|
|
|
random_int =
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, UINT32_MAX);
|
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(coin->sig.rsa_signature =
|
|
|
|
GNUNET_CRYPTO_rsa_sign (denomination_key,
|
|
|
|
&random_int,
|
|
|
|
sizeof (random_int))));
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK,
|
2015-06-12 11:14:32 +02:00
|
|
|
&coin->h_coin_envelope);
|
|
|
|
unsigned_data.purpose.size = htonl (sizeof (unsigned_data));
|
|
|
|
unsigned_data.purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_TEST);
|
|
|
|
unsigned_data.data = htonl (random_int);
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_sign (reserve_sig_key,
|
|
|
|
(struct GNUNET_CRYPTO_EccSignaturePurpose *) &unsigned_data,
|
|
|
|
&coin->reserve_sig.eddsa_signature));
|
|
|
|
GNUNET_free (reserve_sig_key);
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_rsa_private_key_free (denomination_key);
|
|
|
|
return coin;
|
2015-06-09 13:03:37 +02:00
|
|
|
}
|
|
|
|
|
2015-06-09 17:35:33 +02:00
|
|
|
/**
|
2015-06-10 14:59:14 +02:00
|
|
|
* Liberate memory of @a coin
|
2015-06-09 17:35:33 +02:00
|
|
|
*/
|
|
|
|
int
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_collectable_blindcoin_free (struct TALER_MINTDB_CollectableBlindcoin *coin)
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-11 15:55:46 +02:00
|
|
|
if (NULL == coin)
|
|
|
|
return GNUNET_OK;
|
2015-06-12 11:14:32 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (coin->sig.rsa_signature);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (coin->denom_pub.rsa_public_key);
|
|
|
|
GNUNET_free (coin);
|
2015-06-09 17:35:33 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-09 17:35:33 +02:00
|
|
|
/**
|
|
|
|
* @return a randomly generated reserve
|
|
|
|
*/
|
2015-06-09 13:03:37 +02:00
|
|
|
struct TALER_MINTDB_Reserve *
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_reserve_init ()
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-12 11:14:32 +02:00
|
|
|
struct TALER_MINTDB_Reserve *reserve;
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *reserve_priv;
|
2015-06-11 15:55:46 +02:00
|
|
|
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(reserve = GNUNET_new (struct TALER_MINTDB_Reserve)));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(reserve_priv = GNUNET_CRYPTO_eddsa_key_create ()));
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (reserve_priv ,
|
2015-06-12 11:14:32 +02:00
|
|
|
&reserve->pub.eddsa_pub);
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
TALER_string_to_amount (CURRENCY ":1.1", &reserve->balance));
|
2015-06-10 14:59:14 +02:00
|
|
|
reserve->expiry = GNUNET_TIME_absolute_get_forever_ ();
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_free (reserve_priv);
|
2015-06-10 14:59:14 +02:00
|
|
|
return reserve;
|
|
|
|
}
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-11 15:55:46 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Free memory of a reserve
|
|
|
|
*/
|
2015-06-10 14:59:14 +02:00
|
|
|
int
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_reserve_free (struct TALER_MINTDB_Reserve *reserve)
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_free (reserve);
|
|
|
|
return GNUNET_OK;
|
2015-06-09 13:03:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
/**
|
|
|
|
* @return a randomly generated refresh session
|
|
|
|
*/
|
|
|
|
struct TALER_MINTDB_RefreshSession *
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_refresh_session_init ()
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-12 09:09:42 +02:00
|
|
|
struct TALER_MINTDB_RefreshSession *refresh_session;
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(refresh_session = GNUNET_new (struct TALER_MINTDB_RefreshSession)));
|
2015-06-10 14:59:14 +02:00
|
|
|
refresh_session->noreveal_index = 1;
|
|
|
|
refresh_session->num_oldcoins = 1;
|
|
|
|
refresh_session->num_newcoins = 1;
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
return refresh_session;
|
|
|
|
}
|
2015-06-09 13:55:05 +02:00
|
|
|
|
2015-06-09 13:03:37 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
/**
|
|
|
|
* Free a refresh session
|
|
|
|
*/
|
|
|
|
int
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_refresh_session_free (struct TALER_MINTDB_RefreshSession *refresh_session)
|
2015-06-10 14:59:14 +02:00
|
|
|
{
|
|
|
|
GNUNET_free (refresh_session);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
/**
|
|
|
|
* Create a randomly generated deposit
|
|
|
|
*/
|
|
|
|
struct TALER_MINTDB_Deposit *
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_deposit_init ()
|
2015-06-10 14:59:14 +02:00
|
|
|
{
|
2015-06-12 09:09:42 +02:00
|
|
|
struct TALER_MINTDB_Deposit *deposit;
|
2015-06-17 15:08:40 +02:00
|
|
|
struct TALER_CoinPublicInfo coin;
|
|
|
|
struct TALER_CoinSpendSignatureP csig;
|
|
|
|
struct TALER_MerchantPublicKeyP merchant_pub;
|
|
|
|
struct GNUNET_HashCode h_contract;
|
|
|
|
struct GNUNET_HashCode h_wire;
|
|
|
|
const char wire[] = "{"
|
|
|
|
"\"type\":\"SEPA\","
|
|
|
|
"\"IBAN\":\"DE67830654080004822650\","
|
|
|
|
"\"NAME\":\"GNUNET E.\","
|
|
|
|
"\"BIC\":\"GENODEF1SRL\""
|
|
|
|
"}";
|
|
|
|
static uint64_t transaction_id = 0;
|
|
|
|
struct GNUNET_TIME_Absolute timestamp;
|
|
|
|
struct GNUNET_TIME_Absolute refund_deadline;
|
|
|
|
struct TALER_Amount amount_with_fee;
|
|
|
|
struct TALER_Amount deposit_fee;
|
2015-06-09 13:55:05 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-17 15:08:40 +02:00
|
|
|
(deposit = GNUNET_malloc (sizeof (struct TALER_MINTDB_Deposit) + sizeof (wire))));
|
|
|
|
{ // coin
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *eddsa_prvt;
|
|
|
|
struct GNUNET_CRYPTO_rsa_PrivateKey *rsa_prv;
|
|
|
|
|
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(eddsa_prvt = GNUNET_CRYPTO_eddsa_key_create ()));
|
|
|
|
GNUNET_assert (NULL !=
|
2015-06-17 17:24:08 +02:00
|
|
|
(rsa_prv = GNUNET_CRYPTO_rsa_private_key_create (PERF_TALER_MINTDB_RSA_SIZE)));
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (eddsa_prvt,
|
|
|
|
&coin.coin_pub.eddsa_pub);
|
2015-06-17 15:08:40 +02:00
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(coin.denom_pub.rsa_public_key =
|
|
|
|
GNUNET_CRYPTO_rsa_private_key_get_public (rsa_prv)));
|
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(coin.denom_sig.rsa_signature =
|
|
|
|
GNUNET_CRYPTO_rsa_sign (rsa_prv,
|
|
|
|
&coin.coin_pub.eddsa_pub,
|
|
|
|
sizeof (struct GNUNET_CRYPTO_EddsaPublicKey))));
|
2015-06-17 17:24:08 +02:00
|
|
|
|
2015-06-17 15:08:40 +02:00
|
|
|
GNUNET_CRYPTO_rsa_private_key_free (rsa_prv);
|
|
|
|
GNUNET_free (eddsa_prvt);
|
|
|
|
}
|
|
|
|
{ //csig
|
2015-06-10 14:59:14 +02:00
|
|
|
struct u32_presign
|
2015-06-09 13:03:37 +02:00
|
|
|
{
|
2015-06-10 14:59:14 +02:00
|
|
|
struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
|
|
|
|
uint32_t data;
|
|
|
|
} unsigned_data;
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *eddsa_prvt;
|
2015-06-11 15:55:46 +02:00
|
|
|
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(eddsa_prvt = GNUNET_CRYPTO_eddsa_key_create ()));
|
2015-06-17 15:08:40 +02:00
|
|
|
unsigned_data.data = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
UINT32_MAX);
|
2015-06-12 09:09:42 +02:00
|
|
|
unsigned_data.purpose.size = htonl (sizeof (struct u32_presign));
|
|
|
|
unsigned_data.purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_TEST);
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_sign (eddsa_prvt,
|
|
|
|
&unsigned_data.purpose,
|
2015-06-17 15:08:40 +02:00
|
|
|
&csig.eddsa_signature));
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_free (eddsa_prvt);
|
2015-06-10 14:59:14 +02:00
|
|
|
}
|
2015-06-17 15:08:40 +02:00
|
|
|
{ //merchant_pub
|
2015-06-12 09:09:42 +02:00
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *eddsa_prv;
|
2015-06-10 14:59:14 +02:00
|
|
|
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_assert(NULL !=
|
|
|
|
(eddsa_prv = GNUNET_CRYPTO_eddsa_key_create ()));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (
|
2015-06-12 11:14:32 +02:00
|
|
|
eddsa_prv,
|
2015-06-17 15:08:40 +02:00
|
|
|
&merchant_pub.eddsa_pub);
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_free (eddsa_prv);
|
2015-06-10 14:59:14 +02:00
|
|
|
}
|
2015-06-17 15:08:40 +02:00
|
|
|
GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
&h_contract);
|
|
|
|
GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK,
|
|
|
|
&h_wire);
|
|
|
|
timestamp = GNUNET_TIME_absolute_get ();
|
|
|
|
refund_deadline = GNUNET_TIME_absolute_get ();
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":1.1",
|
|
|
|
&amount_with_fee));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_string_to_amount (CURRENCY ":0.1",
|
|
|
|
&deposit_fee));
|
|
|
|
deposit->coin = coin;
|
|
|
|
deposit->csig = csig;
|
|
|
|
deposit->h_contract = h_contract;
|
|
|
|
deposit->h_wire = h_wire;
|
|
|
|
deposit->wire = json_loads (wire, 0, NULL);
|
|
|
|
deposit->transaction_id = transaction_id++;
|
|
|
|
deposit->timestamp = timestamp;
|
|
|
|
deposit->refund_deadline = refund_deadline;
|
|
|
|
deposit->amount_with_fee = amount_with_fee;
|
|
|
|
deposit->deposit_fee = deposit_fee;
|
2015-06-10 14:59:14 +02:00
|
|
|
return deposit;
|
2015-06-09 13:03:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
/**
|
|
|
|
* Free memory of a deposit
|
|
|
|
*/
|
2015-06-09 17:35:33 +02:00
|
|
|
int
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_deposit_free (struct TALER_MINTDB_Deposit *deposit)
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-11 15:55:46 +02:00
|
|
|
if ( NULL == deposit)
|
|
|
|
return GNUNET_OK;
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (deposit->coin.denom_pub.rsa_public_key);
|
|
|
|
GNUNET_CRYPTO_rsa_signature_free (deposit->coin.denom_sig.rsa_signature);
|
2015-06-17 17:24:08 +02:00
|
|
|
json_decref (deposit->wire);
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_free (deposit);
|
2015-06-09 17:35:33 +02:00
|
|
|
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
/**
|
|
|
|
* Generate a randomly generate DenominationKeyInformation
|
|
|
|
*/
|
2015-06-09 13:03:37 +02:00
|
|
|
struct TALER_MINTDB_DenominationKeyIssueInformation *
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_denomination_init ()
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-10 14:59:14 +02:00
|
|
|
struct TALER_MINTDB_DenominationKeyIssueInformation *dki;
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *master_prvt;
|
|
|
|
struct GNUNET_TIME_Absolute anchor;
|
|
|
|
struct TALER_Amount amount;
|
|
|
|
|
2015-06-12 09:09:42 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(dki = GNUNET_new (struct TALER_MINTDB_DenominationKeyIssueInformation)));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(dki->denom_priv.rsa_private_key
|
2015-06-17 17:24:08 +02:00
|
|
|
= GNUNET_CRYPTO_rsa_private_key_create (PERF_TALER_MINTDB_RSA_SIZE)));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(dki->denom_pub.rsa_public_key =
|
|
|
|
GNUNET_CRYPTO_rsa_private_key_get_public (dki->denom_priv.rsa_private_key)));
|
2015-06-09 13:03:37 +02:00
|
|
|
GNUNET_CRYPTO_rsa_public_key_hash (dki->denom_pub.rsa_public_key,
|
2015-06-12 11:14:32 +02:00
|
|
|
&dki->issue.denom_hash);
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-12 11:14:32 +02:00
|
|
|
(master_prvt = GNUNET_CRYPTO_eddsa_key_create ()));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (master_prvt,
|
2015-06-12 11:14:32 +02:00
|
|
|
&dki->issue.master.eddsa_pub);
|
2015-06-10 14:59:14 +02:00
|
|
|
anchor = GNUNET_TIME_absolute_get ();
|
2015-06-09 13:03:37 +02:00
|
|
|
dki->issue.start = GNUNET_TIME_absolute_hton (anchor);
|
|
|
|
dki->issue.expire_withdraw =
|
|
|
|
GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_add (anchor,
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_TIME_relative_get_hour_ ()));
|
2015-06-09 13:03:37 +02:00
|
|
|
dki->issue.expire_spend =
|
|
|
|
GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_add (anchor,
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_TIME_relative_get_hour_ ()));
|
2015-06-09 13:03:37 +02:00
|
|
|
dki->issue.expire_legal =
|
|
|
|
GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_add (anchor,
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_TIME_relative_get_hour_ ()));
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
TALER_string_to_amount (CURRENCY ":1.1", &amount));
|
2015-06-09 13:03:37 +02:00
|
|
|
TALER_amount_hton (&dki->issue.value, &amount);
|
|
|
|
TALER_amount_hton (&dki->issue.fee_withdraw, &amount);
|
|
|
|
TALER_amount_hton (&dki->issue.fee_deposit, &amount);
|
|
|
|
TALER_amount_hton (&dki->issue.fee_refresh, &amount);
|
|
|
|
dki->issue.purpose.purpose = htonl (TALER_SIGNATURE_MASTER_DENOMINATION_KEY_VALIDITY);
|
2015-06-12 09:09:42 +02:00
|
|
|
dki->issue.purpose.size =
|
2015-06-10 14:59:14 +02:00
|
|
|
htonl (sizeof (struct TALER_MINTDB_DenominationKeyIssueInformation) -
|
2015-06-12 11:14:32 +02:00
|
|
|
offsetof (struct TALER_MINTDB_DenominationKeyIssueInformation,
|
|
|
|
issue.purpose));
|
2015-06-09 13:03:37 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
2015-06-12 11:14:32 +02:00
|
|
|
GNUNET_CRYPTO_eddsa_sign (master_prvt,
|
|
|
|
&dki->issue.purpose,
|
|
|
|
&dki->issue.signature.eddsa_signature));
|
|
|
|
GNUNET_free (master_prvt);
|
2015-06-09 13:03:37 +02:00
|
|
|
|
|
|
|
return dki;
|
|
|
|
}
|
|
|
|
|
2015-06-11 15:55:46 +02:00
|
|
|
|
2015-06-10 14:59:14 +02:00
|
|
|
/**
|
|
|
|
* Free memory for a DenominationKeyIssueInformation
|
|
|
|
*/
|
2015-06-09 13:03:37 +02:00
|
|
|
int
|
2015-06-12 12:09:14 +02:00
|
|
|
PERF_TALER_MINTDB_denomination_free (struct TALER_MINTDB_DenominationKeyIssueInformation *dki)
|
2015-06-09 17:35:33 +02:00
|
|
|
{
|
2015-06-11 15:55:46 +02:00
|
|
|
if (NULL ==dki)
|
|
|
|
return GNUNET_OK;
|
2015-06-10 14:59:14 +02:00
|
|
|
GNUNET_CRYPTO_rsa_private_key_free (dki->denom_priv.rsa_private_key);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (dki->denom_pub.rsa_public_key);
|
|
|
|
GNUNET_free (dki);
|
2015-06-09 13:55:05 +02:00
|
|
|
|
2015-06-09 13:03:37 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
2015-06-12 12:09:14 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Generate a random CoinPublicInfo
|
|
|
|
*/
|
|
|
|
struct TALER_CoinPublicInfo *
|
|
|
|
PERF_TALER_MINTDB_coin_public_info_init ()
|
|
|
|
{
|
|
|
|
struct GNUNET_CRYPTO_EddsaPrivateKey *coin_spent_prv;
|
|
|
|
struct GNUNET_CRYPTO_rsa_PrivateKey *denom_prv;
|
|
|
|
struct TALER_CoinPublicInfo *cpi;
|
2015-06-17 15:08:40 +02:00
|
|
|
|
2015-06-12 12:09:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
2015-06-17 17:24:08 +02:00
|
|
|
(denom_prv = GNUNET_CRYPTO_rsa_private_key_create (PERF_TALER_MINTDB_RSA_SIZE)));
|
2015-06-12 12:09:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(coin_spent_prv = GNUNET_CRYPTO_eddsa_key_create ()));
|
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(cpi = GNUNET_new (struct TALER_CoinPublicInfo)));
|
|
|
|
GNUNET_CRYPTO_eddsa_key_get_public (coin_spent_prv, &cpi->coin_pub.eddsa_pub);
|
|
|
|
GNUNET_assert (NULL !=
|
2015-06-17 15:08:40 +02:00
|
|
|
(cpi->denom_pub.rsa_public_key = GNUNET_CRYPTO_rsa_private_key_get_public (denom_prv)));
|
2015-06-12 12:09:14 +02:00
|
|
|
GNUNET_assert (NULL !=
|
|
|
|
(cpi->denom_sig.rsa_signature = GNUNET_CRYPTO_rsa_sign (denom_prv,
|
|
|
|
&cpi->coin_pub,
|
|
|
|
sizeof (struct TALER_CoinSpendPublicKeyP))));
|
|
|
|
GNUNET_free (coin_spent_prv);
|
|
|
|
GNUNET_CRYPTO_rsa_private_key_free (denom_prv);
|
|
|
|
return cpi;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free a CoinPublicInfo
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
PERF_TALER_MINTDB_coin_public_info_free (struct TALER_CoinPublicInfo *cpi)
|
|
|
|
{
|
2015-06-12 15:28:49 +02:00
|
|
|
GNUNET_CRYPTO_rsa_signature_free (cpi->denom_sig.rsa_signature);
|
|
|
|
GNUNET_CRYPTO_rsa_public_key_free (cpi->denom_pub.rsa_public_key);
|
2015-06-12 12:09:14 +02:00
|
|
|
GNUNET_free (cpi);
|
|
|
|
return GNUNET_OK;
|
|
|
|
}
|