2014-04-23 11:19:37 +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 00:15:24 +00:00
|
|
|
/**
|
|
|
|
* @file decrypt.c
|
|
|
|
* This file handles the NTRU decryption
|
|
|
|
* algorithm.
|
|
|
|
* @brief NTRU decryption
|
|
|
|
*/
|
|
|
|
|
2014-05-26 18:59:12 +00:00
|
|
|
#include "ascii_poly.h"
|
2014-05-24 21:11:02 +00:00
|
|
|
#include "decrypt.h"
|
2014-05-26 19:30:42 +00:00
|
|
|
#include "ntru_string.h"
|
2014-05-02 11:00:00 +00:00
|
|
|
|
2014-05-28 18:56:43 +00:00
|
|
|
#include <stdbool.h>
|
2014-05-26 18:59:12 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
2014-05-24 21:11:02 +00:00
|
|
|
#include <fmpz_poly.h>
|
|
|
|
#include <fmpz.h>
|
2014-05-02 11:00:00 +00:00
|
|
|
|
2014-05-24 21:11:02 +00:00
|
|
|
|
2014-05-27 23:17:19 +00:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
2014-05-28 18:56:43 +00:00
|
|
|
bool
|
2014-05-25 21:04:22 +00:00
|
|
|
ntru_decrypt_poly(
|
2014-05-24 21:11:02 +00:00
|
|
|
fmpz_poly_t encr_msg,
|
|
|
|
fmpz_poly_t priv_key,
|
|
|
|
fmpz_poly_t priv_key_inv,
|
2014-05-27 23:09:52 +00:00
|
|
|
fmpz_poly_t out_bin,
|
2014-05-24 21:11:02 +00:00
|
|
|
ntru_context *ctx)
|
|
|
|
{
|
|
|
|
fmpz_poly_t a;
|
|
|
|
|
2014-05-28 18:56:43 +00:00
|
|
|
if (!encr_msg || !priv_key || !priv_key_inv || !out_bin || !ctx)
|
|
|
|
return false;
|
|
|
|
|
2014-05-24 21:11:02 +00:00
|
|
|
fmpz_poly_init(a);
|
|
|
|
fmpz_poly_zero(a);
|
|
|
|
|
|
|
|
poly_starmultiply(priv_key, encr_msg, a, ctx, ctx->q);
|
|
|
|
fmpz_poly_mod(a, ctx->q);
|
2014-05-27 23:09:52 +00:00
|
|
|
poly_starmultiply(a, priv_key_inv, out_bin, ctx, ctx->p);
|
|
|
|
fmpz_poly_mod(out_bin, ctx->p);
|
2014-05-25 02:06:05 +00:00
|
|
|
|
|
|
|
fmpz_poly_clear(a);
|
2014-05-28 18:56:43 +00:00
|
|
|
|
|
|
|
return true;
|
2014-05-02 11:00:00 +00:00
|
|
|
}
|
2014-05-26 18:59:12 +00:00
|
|
|
|
2014-05-27 23:17:19 +00:00
|
|
|
/*------------------------------------------------------------------------*/
|
|
|
|
|
2014-05-26 23:08:17 +00:00
|
|
|
string *
|
2014-05-26 18:59:12 +00:00
|
|
|
ntru_decrypt_string(
|
|
|
|
string *encr_msg,
|
|
|
|
fmpz_poly_t priv_key,
|
|
|
|
fmpz_poly_t priv_key_inv,
|
|
|
|
ntru_context *ctx)
|
|
|
|
{
|
|
|
|
uint32_t i = 0;
|
2014-05-26 23:08:17 +00:00
|
|
|
string *decr_msg;
|
2014-05-26 18:59:12 +00:00
|
|
|
fmpz_poly_t **poly_array;
|
|
|
|
|
2014-05-28 18:56:43 +00:00
|
|
|
if (!encr_msg || !encr_msg->len)
|
|
|
|
return NULL;
|
|
|
|
|
2014-05-27 23:09:52 +00:00
|
|
|
poly_array = base64_to_poly_arr(encr_msg, ctx);
|
2014-05-26 18:59:12 +00:00
|
|
|
|
|
|
|
while (*poly_array[i]) {
|
|
|
|
ntru_decrypt_poly(*poly_array[i], priv_key, priv_key_inv,
|
|
|
|
*poly_array[i], ctx);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2014-05-27 23:09:52 +00:00
|
|
|
decr_msg = bin_poly_arr_to_ascii(poly_array, ctx);
|
2014-05-26 18:59:12 +00:00
|
|
|
|
|
|
|
poly_delete_array(poly_array);
|
|
|
|
|
|
|
|
return decr_msg;
|
|
|
|
}
|
2014-05-27 23:17:19 +00:00
|
|
|
|
|
|
|
/*------------------------------------------------------------------------*/
|