Skip to content

Commit

Permalink
Merge pull request #2 from primenumber/yescrypt-neon
Browse files Browse the repository at this point in the history
Support ARM NEON for Yescrypt
  • Loading branch information
kotodev authored Jan 5, 2018
2 parents e61cbf4 + c249972 commit 6d030fa
Show file tree
Hide file tree
Showing 4 changed files with 1,330 additions and 3 deletions.
6 changes: 4 additions & 2 deletions yescrypt-best.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#ifdef __SSE2__
#include "yescrypt-simd.c"
#ifdef __ARM_NEON__
#include "yescrypt-neon.c"
#elif defined __SSE__
#include "yescrypt-sse.c"
#else
#include "yescrypt-opt.c"
#endif
Loading

0 comments on commit 6d030fa

Please sign in to comment.