1234567891011121314151617181920212223242526272829303132333435 |
- set(PLAN_IMPLEMENTATIONS
- "crypto_core/salsa20/ref"
- "crypto_stream/aes128ctr/portable"
- "crypto_stream/salsa2012/ref"
- "crypto_core/salsa208/ref"
- "crypto_auth/hmacsha512256/ref"
- "crypto_core/hsalsa20/ref"
- "crypto_stream/salsa20/armneon6"
- "crypto_verify/32/ref"
- "crypto_secretbox/xsalsa20poly1305/ref"
- "crypto_hashblocks/sha512/ref"
- "crypto_sign/ed25519/ref10"
- "crypto_onetimeauth/poly1305/neon2"
- "crypto_scalarmult/curve25519/neon2"
- "crypto_stream/xsalsa20/ref"
- "crypto_hashblocks/sha256/inplace"
- "crypto_stream/salsa208/ref"
- "crypto_core/salsa2012/ref"
- "crypto_box/curve25519xsalsa20poly1305/ref"
- "crypto_hash/sha512/ref"
- "crypto_hash/sha256/ref"
- "crypto_verify/16/ref"
- "crypto_auth/hmacsha256/ref"
- )
- set(PLAN_TYPES
- "typedef int crypto_int32;"
- "typedef short crypto_int16;"
- "typedef unsigned char crypto_uint8;"
- "typedef unsigned short crypto_uint16;"
- "typedef unsigned int crypto_uint32;"
- "typedef long long crypto_int64;"
- "typedef unsigned long long crypto_uint64;"
- "typedef signed char crypto_int8;"
- )
|