pqc/src/ntru_encrypt.h

90 lines
2.3 KiB
C
Raw Normal View History

2014-04-29 08:32:10 +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-04-29 08:43:06 +00:00
2014-05-25 00:15:24 +00:00
/**
2014-06-05 13:49:40 +00:00
* @file ntru_encrypt.h
* Header for the internal API of ntru_encrypt.c.
2014-05-25 00:15:24 +00:00
* @brief header for encrypt.c
*/
2014-05-08 10:50:30 +00:00
#ifndef PQC_ENCRYPT_H
#define PQC_ENCRYPT_H
2014-04-29 08:43:06 +00:00
2014-06-05 13:49:40 +00:00
#include "ntru_params.h"
#include "ntru_poly.h"
#include "ntru_string.h"
2014-04-29 08:43:06 +00:00
#include <fmpz_poly.h>
#include <fmpz.h>
2014-05-25 21:04:22 +00:00
/**
* encrypt the msg, using the math:
* e = (h r) + m (mod q)
*
* e = the encrypted poly
*
2014-05-25 21:04:22 +00:00
* h = the public key
*
2014-05-25 21:04:22 +00:00
* r = the random poly
*
2014-05-25 21:04:22 +00:00
* m = the message poly
*
2014-05-25 21:04:22 +00:00
* q = large mod
*
* @param out the output poly which is in the range {0, q-1}
* (not ternary!) [out]
* @param msg_tern the message to encrypt, in ternary format
* @param pub_key the public key
* @param rnd the random poly (should have relatively small
* coefficients, but not restricted to {-1, 0, 1})
2014-06-05 13:33:57 +00:00
* @param params ntru_params the ntru context
2014-05-25 21:04:22 +00:00
*/
2014-06-05 17:12:39 +00:00
void
2014-05-25 21:04:22 +00:00
ntru_encrypt_poly(
fmpz_poly_t out,
const fmpz_poly_t msg_tern,
const fmpz_poly_t pub_key,
const fmpz_poly_t rnd,
2014-06-05 13:33:57 +00:00
const ntru_params *params);
/**
* Encrypt a message in the form of a null-terminated char array and
* return a string.
*
* @param msg the message
* @param pub_key the public key
* @param rnd the random poly (should have relatively small
* coefficients, but not restricted to {-1, 0, 1})
2014-06-05 13:33:57 +00:00
* @param params ntru_params the ntru context
2014-06-05 17:15:54 +00:00
* @return the newly allocated encrypted string
*/
string *
ntru_encrypt_string(
const string *msg,
const fmpz_poly_t pub_key,
const fmpz_poly_t rnd,
2014-06-05 13:33:57 +00:00
const ntru_params *params);
2014-05-08 10:50:30 +00:00
#endif /* PQC_ENCRYPT_H */