X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/stglibs/crypto.lib/include/stg/blowfish.h diff --git a/stglibs/crypto.lib/include/stg/blowfish.h b/stglibs/crypto.lib/include/stg/blowfish.h deleted file mode 100644 index 80e39cd3..00000000 --- a/stglibs/crypto.lib/include/stg/blowfish.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Author : Paul Kocher - * E-mail : pck@netcom.com - * Date : 1997 - * Description: C implementation of the Blowfish algorithm. - */ - -#ifndef BLOWFISH_H -#define BLOWFISH_H - -#include "stg/os_int.h" - -#define MAXKEYBYTES 56 /* 448 bits */ - -#ifdef __cplusplus -#include // size_t -extern "C" { -#else -#include // size_t -#endif - -typedef struct { - uint32_t P[16 + 2]; - uint32_t S[4][256]; -} BLOWFISH_CTX; - -void Blowfish_Init(BLOWFISH_CTX * ctx, unsigned char * key, int keyLen); -void Blowfish_Encrypt(const BLOWFISH_CTX * ctx, uint32_t * xl, uint32_t * xr); -void Blowfish_Decrypt(const BLOWFISH_CTX * ctx, uint32_t * xl, uint32_t * xr); - -void InitContext(const char * key, size_t length, BLOWFISH_CTX * ctx); -void DecryptBlock(void * d, const void * s, const BLOWFISH_CTX * ctx); -void EncryptBlock(void * d, const void * s, const BLOWFISH_CTX * ctx); - -void DecryptString(void * d, const void * s, size_t length, const BLOWFISH_CTX * ctx); -void EncryptString(void * d, const void * s, size_t length, const BLOWFISH_CTX * ctx); - -#ifdef __cplusplus -} -#endif - -#endif -