Skip to content

Commit

Permalink
Disable AVR asm speedups in Curve25519 for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rweather committed Nov 3, 2017
1 parent 277a0b6 commit 8b5f414
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/Crypto/Curve25519.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@

// Global switch to enable/disable AVR inline assembly optimizations.
#if defined(__AVR__)
#define CURVE25519_ASM_AVR 1
// Disabled for now - there are issues with newer Arduino compilers. FIXME
//#define CURVE25519_ASM_AVR 1
#endif

// The overhead of clean() calls in mul(), reduceQuick(), etc can
Expand Down

0 comments on commit 8b5f414

Please sign in to comment.