2014-05-18 08:28:25 +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-05-25 18:50:12 +00:00
|
|
|
/**
|
2014-06-05 13:49:40 +00:00
|
|
|
* @file ntru_ascii_poly.h
|
|
|
|
* Header for the internal API of ntru_ascii_poly.c.
|
|
|
|
* @brief header for ntru_ascii_poly.c
|
2014-05-25 18:50:12 +00:00
|
|
|
*/
|
|
|
|
|
2014-05-25 18:50:22 +00:00
|
|
|
#ifndef NTRU_ASCII_POLY_H_
|
|
|
|
#define NTRU_ASCII_POLY_H_
|
2014-05-18 08:28:25 +00:00
|
|
|
|
2014-05-25 17:21:59 +00:00
|
|
|
|
2014-06-05 13:49:40 +00:00
|
|
|
#include "ntru_common.h"
|
2014-05-26 19:30:42 +00:00
|
|
|
#include "ntru_string.h"
|
2014-06-05 13:49:40 +00:00
|
|
|
#include "ntru_params.h"
|
2014-05-25 17:21:59 +00:00
|
|
|
|
|
|
|
#include <fmpz_poly.h>
|
|
|
|
#include <fmpz.h>
|
|
|
|
|
|
|
|
|
2014-05-26 23:08:17 +00:00
|
|
|
/**
|
2014-05-27 23:09:52 +00:00
|
|
|
* Convert a "binary" ascii string to a binary polyomial.
|
2014-05-26 23:08:17 +00:00
|
|
|
* The ascii string will be converted to a binary representation
|
|
|
|
* and the following mapping will apply between binary -> poly:
|
|
|
|
*
|
|
|
|
* 1 => 1
|
|
|
|
*
|
|
|
|
* 0 => -1
|
|
|
|
*
|
2014-05-27 23:09:52 +00:00
|
|
|
* @param to_poly the string to get into binary polynomial format
|
2014-06-05 13:33:57 +00:00
|
|
|
* @param params the NTRUEncrypt context
|
2014-05-27 23:09:52 +00:00
|
|
|
* @return newly allocated array of binary polynomials
|
2014-05-26 23:08:17 +00:00
|
|
|
*/
|
|
|
|
fmpz_poly_t *
|
2014-06-05 13:33:57 +00:00
|
|
|
ascii_bin_to_bin_poly(const char *to_poly, const ntru_params *params);
|
2014-05-26 23:08:17 +00:00
|
|
|
|
2014-05-25 21:04:22 +00:00
|
|
|
/**
|
2014-05-27 23:09:52 +00:00
|
|
|
* Convert an ascii string to an array of binary polyomials.
|
2014-05-26 18:59:12 +00:00
|
|
|
* The ascii string will be converted to a binary representation
|
|
|
|
* and the following mapping will apply between binary -> poly:
|
2014-05-25 21:04:22 +00:00
|
|
|
*
|
2014-05-26 18:59:12 +00:00
|
|
|
* 1 => 1
|
|
|
|
*
|
|
|
|
* 0 => -1
|
|
|
|
*
|
2014-05-27 23:09:52 +00:00
|
|
|
* @param to_poly the string to get into binary polynomial format
|
2014-06-05 13:33:57 +00:00
|
|
|
* @param params the NTRUEncrypt context
|
2014-05-27 23:09:52 +00:00
|
|
|
* @return newly allocated array of binary polynomials
|
2014-05-26 18:59:12 +00:00
|
|
|
*/
|
|
|
|
fmpz_poly_t **
|
2014-06-05 13:33:57 +00:00
|
|
|
ascii_to_bin_poly_arr(const string *to_poly, const ntru_params *params);
|
2014-05-26 23:08:17 +00:00
|
|
|
|
|
|
|
/**
|
2014-05-27 23:09:52 +00:00
|
|
|
* Convert an base64 encoded string to an array of polyomials with
|
|
|
|
* coefficients which are expected to be in the range [0, q-1].
|
|
|
|
* The chars will be converted (after decoding) to their integer
|
|
|
|
* representation and directly put into the coefficients.
|
|
|
|
*
|
|
|
|
* If the last polynomial is of degree less than N -1, then it will
|
|
|
|
* be filled with trailing q's for later user in poly_arr_to_base64().
|
|
|
|
*
|
|
|
|
* @param to_poly the string to get into polynomial format,
|
|
|
|
* which is of type string, so we can iterate safely over it
|
|
|
|
* (the string might have null-bytes in the middle of it)
|
2014-06-05 13:33:57 +00:00
|
|
|
* @param params the NTRUEncrypt context
|
2014-05-27 23:09:52 +00:00
|
|
|
* @return newly allocated array of polynomials
|
|
|
|
*/
|
|
|
|
fmpz_poly_t **
|
2014-06-05 13:33:57 +00:00
|
|
|
base64_to_poly_arr(const string *to_poly, const ntru_params *params);
|
2014-05-27 23:09:52 +00:00
|
|
|
|
2014-05-18 08:28:25 +00:00
|
|
|
|
2014-05-25 18:50:22 +00:00
|
|
|
#endif /* NTRU_ASCII_POLY_H_ */
|