X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/479b8853c2ab18c98926a9369a03888021e9b986..38f134e6a96c08fdd7d4ed07ca3550e8434d56e9:/libs/crypto/include/stg/blowfish.h diff --git a/libs/crypto/include/stg/blowfish.h b/libs/crypto/include/stg/blowfish.h index 6a4e6f31..101b2f6f 100644 --- a/libs/crypto/include/stg/blowfish.h +++ b/libs/crypto/include/stg/blowfish.h @@ -24,7 +24,7 @@ typedef struct { uint32_t S[4][256]; } BLOWFISH_CTX; -void Blowfish_Init(BLOWFISH_CTX * ctx, unsigned char * key, int keyLen); +void Blowfish_Init(BLOWFISH_CTX * ctx, void* 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);