2014-06-05 14:33:40 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 FH Bielefeld
|
|
|
|
*
|
|
|
|
* This file is part of a FH Bielefeld project.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
* MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2014-06-22 19:14:50 +00:00
|
|
|
* @file ntru_keypair.h
|
2014-06-05 15:00:32 +00:00
|
|
|
* This file holds the public API of generating,
|
|
|
|
* exporting and importing public and private keys
|
|
|
|
* of the pqc NTRU implementation and is
|
2014-06-05 14:33:40 +00:00
|
|
|
* meant to be installed on the client system.
|
2014-06-05 15:00:32 +00:00
|
|
|
* @brief public API, key handling
|
2014-06-05 14:33:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PUBLIC_NTRU_KEYPAIR_H_
|
|
|
|
#define PUBLIC_NTRU_KEYPAIR_H_
|
|
|
|
|
2014-06-22 19:14:50 +00:00
|
|
|
#include <ntru.h>
|
2014-06-05 14:33:40 +00:00
|
|
|
|
|
|
|
#include <fmpz_poly.h>
|
|
|
|
#include <fmpz.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct keypair keypair;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This struct holds the keypair,
|
|
|
|
* both private and public components.
|
|
|
|
*/
|
|
|
|
struct keypair {
|
|
|
|
/**
|
|
|
|
* First part of the private key,
|
|
|
|
* a random polynom.
|
|
|
|
*/
|
|
|
|
fmpz_poly_t priv;
|
|
|
|
/**
|
|
|
|
* Second part of the private key,
|
|
|
|
* the priv polynom inverted.
|
|
|
|
*/
|
|
|
|
fmpz_poly_t priv_inv;
|
|
|
|
/**
|
|
|
|
* The public key, computed as:
|
|
|
|
* h = p * (Fq * g) mod q
|
|
|
|
*/
|
|
|
|
fmpz_poly_t pub;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an NTRU key pair,
|
|
|
|
* consisting of public and private
|
|
|
|
* components.
|
|
|
|
*
|
2014-06-22 20:18:41 +00:00
|
|
|
* @param pair store private and public components here [out]
|
2014-06-05 14:33:40 +00:00
|
|
|
* @param f a random polynomial
|
|
|
|
* @param g a random polynomial
|
|
|
|
* @param params the NTRU context
|
2014-06-22 20:18:41 +00:00
|
|
|
* @return true for success, false if f or g are not invertible
|
|
|
|
* (then the caller hast to try different ones)
|
2014-06-05 14:33:40 +00:00
|
|
|
*/
|
|
|
|
bool
|
|
|
|
ntru_create_keypair(
|
2014-06-22 20:18:41 +00:00
|
|
|
keypair *pair,
|
2014-06-22 20:18:00 +00:00
|
|
|
const fmpz_poly_t f,
|
|
|
|
const fmpz_poly_t g,
|
|
|
|
const ntru_params *params);
|
2014-06-05 14:33:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export the public key to a file.
|
|
|
|
*
|
|
|
|
* @param filename the file to save the public key into
|
|
|
|
* @param pub the public key
|
|
|
|
* @param params the NTRU context
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
export_public_key(char const * const filename,
|
2014-06-22 20:18:00 +00:00
|
|
|
const fmpz_poly_t pub,
|
|
|
|
const ntru_params *params)
|
2014-06-05 14:33:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Export the private key to a file.
|
|
|
|
*
|
|
|
|
* @param filename the file to save the private key into
|
|
|
|
* @param priv the private key
|
|
|
|
* @param params the NTRU context
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
export_priv_key(char const * const filename,
|
2014-06-22 20:18:00 +00:00
|
|
|
const fmpz_poly_t priv,
|
|
|
|
const ntru_params *params)
|
2014-06-05 14:33:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Import the public key from a file.
|
2014-06-22 20:18:41 +00:00
|
|
|
*
|
2014-06-05 14:33:40 +00:00
|
|
|
* @param pub where to save the public key [out]
|
2014-06-22 20:18:41 +00:00
|
|
|
* @param filename the file to get the public key from
|
2014-06-05 14:33:40 +00:00
|
|
|
* @param params the NTRU context
|
|
|
|
*/
|
|
|
|
void
|
2014-06-22 20:18:41 +00:00
|
|
|
import_public_key(fmpz_poly_t pub,
|
|
|
|
char const * const filename,
|
2014-06-22 20:18:00 +00:00
|
|
|
const ntru_params *params);
|
2014-06-05 14:33:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Import the private key from a file and store him
|
|
|
|
* along with his inverse.
|
|
|
|
*
|
|
|
|
* @param priv where to save the private key [out]
|
|
|
|
* @param priv_inv where to save the inverse of the private key [out]
|
2014-06-22 20:18:41 +00:00
|
|
|
* @param filename the file to get the private key from
|
2014-06-05 14:33:40 +00:00
|
|
|
* @param params the NTRU context
|
|
|
|
*/
|
|
|
|
void
|
2014-06-22 20:18:41 +00:00
|
|
|
import_priv_key(fmpz_poly_t priv,
|
2014-06-05 14:33:40 +00:00
|
|
|
fmpz_poly_t priv_inv,
|
2014-06-22 20:18:41 +00:00
|
|
|
char const * const filename,
|
2014-06-22 20:18:00 +00:00
|
|
|
const ntru_params *params);
|
2014-06-05 14:33:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Used to free the inner structure
|
|
|
|
* of a keypair. This will not call free()
|
|
|
|
* on the pair itself.
|
|
|
|
*
|
|
|
|
* @param pair the pair to free the inner structure of
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
ntru_delete_keypair(keypair *pair);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* PUBLIC_NTRU_KEYPAIR_H_ */
|