Skip to content

Commit

Permalink
partial yescrypt changes
Browse files Browse the repository at this point in the history
- added properly the ARM Neon optimisations into the code
- readded the original simd file (deleted by mistake)
  • Loading branch information
Teredic committed Feb 1, 2020
1 parent afbf781 commit be2df3d
Show file tree
Hide file tree
Showing 2 changed files with 1,370 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/crypto/defyx/yescrypt-best.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#ifdef __ARM__
#ifdef __ARM_NEON__
#include "yescrypt-neon.c"
#elif defined __SSE__
#include "yescrypt-simd.c"
#else
#include "yescrypt-opt.c"
#endif
Loading

0 comments on commit be2df3d

Please sign in to comment.