Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
1k views

Algorithm for computing the inverse of a polynomial

I'm looking for an algorithm (or code) to help me compute the inverse a polynomial, I need it for implementing NTRUEncrypt. An algorithm that is easily understandable is what I prefer, there are ...
3
votes
1answer
289 views

Modular Reduction of Polynomials in NTRUEncrypt

I'm implementing the NTRUEncrypt algorithm, according to an NTRU tutorial, a polynomial f has an inverse g such that f*g=1 mod x, basically the polynomial multiplied by its inverse reduced modulo x ...
2
votes
3answers
453 views

How to make a message into a polynomial?

I'm doing a project where I have to implement the NTRUEncrypt public key cryptosystem. This is the first step according to their guide in encrypting - "Alice, who wants to send a secret message to ...
1
vote
2answers
177 views

Resultant of a polynomial with x^n–1

Resultant of a polynomial with x^n–1 (mod p) I am implementing the NTRUSign algorithm as described in http://grouper.ieee.org/groups/1363/lattPK/submissions/EESS1v2.pdf , section 2.2.7.1 which ...
1
vote
6answers
530 views

NTRUEncrypt source code?

I asked this before, but didn't get any responses. Can anybody point me to C or Java code (or anything else) that does NTRU encryption? Several people who were implementing the algorithm have posted ...
1
vote
1answer
201 views

Meet-in-the-Middle Atack on an NTRU Private key

I was wondering if anyone could tell me how to represent the enumeration of vectors of privite key f in a Meet-In-the-Middle Attack on an NTRU Private key. I can not understand the example, given here ...
1
vote
1answer
565 views

NTRU Pseudo-code for computing Polynomial Inverses

I was wondering if anyone could tell me how to implement line 45 of the following pseudo-code. Require: the polynomial to invert a(x), N, and q. 1: k = 0 2: b = 1 3: c = 0 4: f = a 5: g = 0 {Steps ...
0
votes
0answers
254 views

NTRUEncrypt / NTRUSign source code? [closed]

Possible Duplicate: NTRUEncrypt source code? Where would I find a NTRU implementation with sources? I know you can license it from the company that invented NTRU, but I just want to play ...