2016-06-16 00:09:29 +02:00
|
|
|
/* This file is part of libbrandt.
|
|
|
|
* Copyright (C) 2016 GNUnet e.V.
|
|
|
|
*
|
|
|
|
* libbrandt 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 of the License, or (at your option) any later
|
|
|
|
* version.
|
|
|
|
*
|
|
|
|
* libbrandt 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
|
|
|
|
* libbrandt. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2016-06-12 20:52:22 +02:00
|
|
|
|
2016-06-16 00:09:29 +02:00
|
|
|
/**
|
|
|
|
* @file brandt.c
|
2016-06-19 23:21:01 +02:00
|
|
|
* @brief \todo
|
2016-06-22 23:18:46 +02:00
|
|
|
* @author Markus Teich
|
2016-06-16 00:09:29 +02:00
|
|
|
*/
|
2016-06-12 20:52:22 +02:00
|
|
|
#include <gcrypt.h>
|
|
|
|
|
|
|
|
#include "crypto.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2016-06-16 00:09:29 +02:00
|
|
|
void
|
|
|
|
BRANDT_init ()
|
2016-06-12 20:52:22 +02:00
|
|
|
{
|
|
|
|
gcry_error_t err = 0;
|
2016-06-16 00:09:29 +02:00
|
|
|
|
|
|
|
if (!gcry_check_version ("1.7.0"))
|
|
|
|
eprintf ("libgcrypt version mismatch");
|
2016-06-12 20:52:22 +02:00
|
|
|
|
|
|
|
/* SECMEM cannot be resized dynamically. We do not know how much we need */
|
2016-06-16 00:09:29 +02:00
|
|
|
if ((err = gcry_control (GCRYCTL_DISABLE_SECMEM, 0)))
|
|
|
|
weprintf ("failed to set libgcrypt option DISABLE_SECMEM: %s",
|
|
|
|
gcry_strerror (err));
|
2016-06-12 20:52:22 +02:00
|
|
|
|
|
|
|
/* ecc is slow otherwise. */
|
2016-06-16 00:09:29 +02:00
|
|
|
if ((err = gcry_control (GCRYCTL_ENABLE_QUICK_RANDOM, 0)))
|
|
|
|
weprintf ("failed to set libgcrypt option ENABLE_QUICK_RANDOM: %s",
|
|
|
|
gcry_strerror (err));
|
2016-06-12 20:52:22 +02:00
|
|
|
|
2016-06-16 00:09:29 +02:00
|
|
|
gcry_control (GCRYCTL_INITIALIZATION_FINISHED, 0);
|
|
|
|
brandt_crypto_init ();
|
2016-06-12 20:52:22 +02:00
|
|
|
}
|