exchange/src/util/util.c

97 lines
2.6 KiB
C
Raw Normal View History

2015-01-08 18:37:20 +01:00
/*
This file is part of TALER
2016-01-19 14:39:00 +01:00
Copyright (C) 2014 GNUnet e.V.
2015-01-08 18:37:20 +01: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.
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.
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/>
*/
/**
* @file util.c
* @brief Common utility functions; we might choose to move those to GNUnet at some point
2015-01-09 17:12:13 +01:00
* @author Sree Harsha Totakura <sreeharsha@totakura.in>
2015-01-08 18:37:20 +01:00
* @author Florian Dold
* @author Benedikt Mueller
*/
#include "platform.h"
#include "taler_util.h"
#include <gcrypt.h>
2015-08-14 22:05:34 +02:00
/**
* Convert a buffer to an 8-character string
* representative of the contents. This is used
* for logging binary data when debugging.
*
* @param buf buffer to log
* @param buf_size number of bytes in @a buf
* @return text representation of buf, valid until next
* call to this function
*/
const char *
TALER_b2s (const void *buf,
size_t buf_size)
{
static char ret[9];
struct GNUNET_HashCode hc;
char *tmp;
GNUNET_CRYPTO_hash (buf,
buf_size,
&hc);
tmp = GNUNET_STRINGS_data_to_string_alloc (&hc,
sizeof (hc));
memcpy (ret,
tmp,
8);
GNUNET_free (tmp);
ret[8] = '\0';
return ret;
}
2015-08-14 22:05:34 +02:00
/**
* Obtain denomination amount from configuration file.
*
2015-03-28 15:42:07 +01:00
* @param cfg configuration to use
* @param section section of the configuration to access
* @param option option of the configuration to access
2015-03-28 15:42:07 +01:00
* @param[out] denom set to the amount found in configuration
* @return #GNUNET_OK on success, #GNUNET_SYSERR on error
*/
int
TALER_config_get_denom (const struct GNUNET_CONFIGURATION_Handle *cfg,
const char *section,
const char *option,
struct TALER_Amount *denom)
{
char *str;
if (GNUNET_OK !=
GNUNET_CONFIGURATION_get_value_string (cfg,
section,
option,
&str))
return GNUNET_NO;
if (GNUNET_OK != TALER_string_to_amount (str,
denom))
2016-06-11 17:11:38 +02:00
{
GNUNET_free (str);
return GNUNET_SYSERR;
2016-06-11 17:11:38 +02:00
}
GNUNET_free (str);
return GNUNET_OK;
}
2015-01-08 18:37:20 +01:00
/* end of util.c */