https://github.com/henrycg/earand
Raw File
Tip revision: 362625f3847ddd2e2d5a90cf5f93b4b3ea76e059 authored by Henry Corrigan-Gibbs on 21 May 2018, 19:54:59 UTC
Merge branch 'master' of github.com:henrycg/earand
Tip revision: 362625f
gen_keys.h
#ifndef _GEN_KEYS_H
#define _GEN_KEYS_H

#include <stdbool.h>
#include <openssl/bn.h>
#include <openssl/ec.h>
#include <openssl/x509.h>

#include "dsa_params.h"
#include "rsa_params.h"
#include "util.h"

/**
 * Benchmarking methods for generating keys
 * WITHOUT using the verifiable protocol.
 */

X509* GenerateDsa(DsaParams params);

X509* GenerateRsa(RsaParams params);


#endif
back to top