ppc64_plan.cmake 993 B

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