Coder Social home page Coder Social logo

armfazh / rfc7748_precomputed Goto Github PK

View Code? Open in Web Editor NEW
44.0 4.0 9.0 390 KB

Updated! (Dec2-2019) This is a C-language software library that provides optimized implementations of the Diffie-Hellman functions known as X25519 and X448 (RFC-7748) for 64-bit architectures.

License: Other

CMake 1.23% C 86.30% C++ 12.26% Makefile 0.21%
x25519 curve25519 cryptography diffie-hellman mulx adcx ladder rfc7748

rfc7748_precomputed's Issues

Change license to GPLv2+ or something more permissive

I'd like to use this in WireGuard, and by extension, in the Linux kernel. I've already imported it and gotten it ready for the kernel's environment, as well as reducing input points mod 2^255-19 and accounting for the various different CPU flags at runtime. However, right now it lives in this unhappy branch, which I can't yet merge to master, because this project appears to be LGPLv3+, whereas the kernel requires GPLv2.

Would you consider re-licensing this project to something compatible with GPLv2? This would include things like:

  • GPLv2 itself.
  • GPLv2+
  • LGPLv2+
  • GPLv2 and GPLv3
  • LGPLv2 and LGPLv3
  • BSD
  • MIT
  • Public domain
  • Many other good candidates

Doing so will get this code some real world usage and deployment.

Problems with field arithmetic

I reviewed the field implementation in fp25519_x64 and either I'm missing something or both the add_EltFp25519_1w_x64 and sub_EltFp25519_1w_x64 have incomplete carry handling.

e.g. I can't see why this line would never carry, since RAX could hold any value, and this line is (possibly) adding 38 to it:

"addq %%rcx, %%rax \n\t"

I think a similar logic also applies for:

"subq %%rcx, %%rax \n\t"

I don't see any tests specifically for add_/sub_. They are covered e.g. by the "mul/sqr" test, but random inputs with 64-bit limbs are very unlikely to catch carry handling errors, especially since random_EltFp25519_1w_x64 is only generating 255-bit values, while add_/sub_ apparently support 256-bit values (?).

I only briefly checked fp448_x64 for comparison, but I believe add_EltFp448_1w_x64 and sub_EltFp448_1w_x64 also have similar errors, probably even less likely to be detected by random inputs.

Possible errors in arithmetic operations in GF(2^448 -2^224 -1).

Brief: It is possible that carry propagation is not performed properly in addition/suibtraction/reduction.
This issue was previously observed in #5 for GF(2^255 -19).

Help wanted:

  • Include more tests for arithmetic operations.
  • Proper carry handling for the worst case, i.e. numbers of 2^448 bits.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.