Replace __kernel, __constant, __global and __local qualifiers with macro for better control
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
* License.....: MIT
|
||||
*/
|
||||
|
||||
DECLSPEC void serpent128_set_key (u32 *ks, const u32 *ukey)
|
||||
DECLSPEC void serpent128_encrypt (const u32 *ks, const u32 *in, u32 *out)
|
||||
DECLSPEC void serpent128_decrypt (const u32 *ks, const u32 *in, u32 *out)
|
||||
DECLSPEC void serpent256_set_key (u32 *ks, const u32 *ukey)
|
||||
DECLSPEC void serpent256_encrypt (const u32 *ks, const u32 *in, u32 *out)
|
||||
DECLSPEC void serpent256_decrypt (const u32 *ks, const u32 *in, u32 *out)
|
||||
DECLSPEC void serpent128_set_key (u32 *ks, const u32 *ukey);
|
||||
DECLSPEC void serpent128_encrypt (const u32 *ks, const u32 *in, u32 *out);
|
||||
DECLSPEC void serpent128_decrypt (const u32 *ks, const u32 *in, u32 *out);
|
||||
DECLSPEC void serpent256_set_key (u32 *ks, const u32 *ukey);
|
||||
DECLSPEC void serpent256_encrypt (const u32 *ks, const u32 *in, u32 *out);
|
||||
DECLSPEC void serpent256_decrypt (const u32 *ks, const u32 *in, u32 *out);
|
||||
|
||||
Reference in New Issue
Block a user