armeabi_neon_plan.cmake 1004 B

1234567891011121314151617181920212223242526272829303132333435
  1. set(PLAN_IMPLEMENTATIONS
  2. "crypto_core/salsa20/ref"
  3. "crypto_stream/aes128ctr/portable"
  4. "crypto_stream/salsa2012/ref"
  5. "crypto_core/salsa208/ref"
  6. "crypto_auth/hmacsha512256/ref"
  7. "crypto_core/hsalsa20/ref"
  8. "crypto_stream/salsa20/armneon6"
  9. "crypto_verify/32/ref"
  10. "crypto_secretbox/xsalsa20poly1305/ref"
  11. "crypto_hashblocks/sha512/ref"
  12. "crypto_sign/ed25519/ref10"
  13. "crypto_onetimeauth/poly1305/neon2"
  14. "crypto_scalarmult/curve25519/neon2"
  15. "crypto_stream/xsalsa20/ref"
  16. "crypto_hashblocks/sha256/inplace"
  17. "crypto_stream/salsa208/ref"
  18. "crypto_core/salsa2012/ref"
  19. "crypto_box/curve25519xsalsa20poly1305/ref"
  20. "crypto_hash/sha512/ref"
  21. "crypto_hash/sha256/ref"
  22. "crypto_verify/16/ref"
  23. "crypto_auth/hmacsha256/ref"
  24. )
  25. set(PLAN_TYPES
  26. "typedef int crypto_int32;"
  27. "typedef short crypto_int16;"
  28. "typedef unsigned char crypto_uint8;"
  29. "typedef unsigned short crypto_uint16;"
  30. "typedef unsigned int crypto_uint32;"
  31. "typedef long long crypto_int64;"
  32. "typedef unsigned long long crypto_uint64;"
  33. "typedef signed char crypto_int8;"
  34. )