From 75f780871949e5bacca4718507e66c8d28d72e69 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 20 Jul 2014 05:11:10 +0200 Subject: Remove deprecated/legacy cryptographic algorithms and encryption modes that are never used by VeraCrypt. This will speed up volumes opening in many cases. --- src/Crypto/Cast.h | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 src/Crypto/Cast.h (limited to 'src/Crypto/Cast.h') diff --git a/src/Crypto/Cast.h b/src/Crypto/Cast.h deleted file mode 100644 index 5c744494..00000000 --- a/src/Crypto/Cast.h +++ /dev/null @@ -1,24 +0,0 @@ -/* Deprecated/legacy */ - - -#ifndef HEADER_CAST_H -#define HEADER_CAST_H - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct CAST_KEY_STRUCT -{ - unsigned __int32 K[32]; -} CAST_KEY; - -void Cast5Decrypt (const byte *inBlock, byte *outBlock, CAST_KEY *key); -void Cast5Encrypt (const byte *inBlock, byte *outBlock, CAST_KEY *key); -void Cast5SetKey (CAST_KEY *key, unsigned int keylength, const byte *userKey); - -#ifdef __cplusplus -} -#endif - -#endif -- cgit v1.2.3