Add headers for OpenCL include files

This commit is contained in:
jsteube
2019-03-22 22:00:07 +01:00
parent 0a6fc35707
commit 340d2ae7d3
36 changed files with 1122 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
/**
* Author......: See docs/credits.txt
* 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)