From acee3cf71ebc5f69087ab56f3d6e9088113dd81d Mon Sep 17 00:00:00 2001 From: zero-24 Date: Wed, 21 Sep 2016 21:59:45 +0200 Subject: [PATCH] deprecate old ciphers --- libraries/joomla/crypt/cipher/3des.php | 3 ++- libraries/joomla/crypt/cipher/blowfish.php | 3 ++- libraries/joomla/crypt/cipher/mcrypt.php | 3 ++- libraries/joomla/crypt/cipher/rijndael256.php | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/libraries/joomla/crypt/cipher/3des.php b/libraries/joomla/crypt/cipher/3des.php index 2d08b2d5a5207..c5364b967ec3a 100644 --- a/libraries/joomla/crypt/cipher/3des.php +++ b/libraries/joomla/crypt/cipher/3des.php @@ -12,7 +12,8 @@ /** * JCrypt cipher for Triple DES encryption, decryption and key generation. * - * @since 12.1 + * @since 12.1 + * @deprecated 4.0 Without replacment use JCryptCipherCrypto */ class JCryptCipher3Des extends JCryptCipherMcrypt { diff --git a/libraries/joomla/crypt/cipher/blowfish.php b/libraries/joomla/crypt/cipher/blowfish.php index d990c233a430a..356b65b6e3e67 100644 --- a/libraries/joomla/crypt/cipher/blowfish.php +++ b/libraries/joomla/crypt/cipher/blowfish.php @@ -12,7 +12,8 @@ /** * JCrypt cipher for Blowfish encryption, decryption and key generation. * - * @since 12.1 + * @since 12.1 + * @deprecated 4.0 Without replacment use JCryptCipherCrypto */ class JCryptCipherBlowfish extends JCryptCipherMcrypt { diff --git a/libraries/joomla/crypt/cipher/mcrypt.php b/libraries/joomla/crypt/cipher/mcrypt.php index 159b43acfb4da..c5f6e4ae2b8a3 100644 --- a/libraries/joomla/crypt/cipher/mcrypt.php +++ b/libraries/joomla/crypt/cipher/mcrypt.php @@ -12,7 +12,8 @@ /** * JCrypt cipher for mcrypt algorithm encryption, decryption and key generation. * - * @since 12.1 + * @since 12.1 + * @deprecated 4.0 Without replacment use JCryptCipherCrypto */ abstract class JCryptCipherMcrypt implements JCryptCipher { diff --git a/libraries/joomla/crypt/cipher/rijndael256.php b/libraries/joomla/crypt/cipher/rijndael256.php index 9e5f4ebc0dd45..678fadcf4ddc7 100644 --- a/libraries/joomla/crypt/cipher/rijndael256.php +++ b/libraries/joomla/crypt/cipher/rijndael256.php @@ -12,7 +12,8 @@ /** * JCrypt cipher for Rijndael 256 encryption, decryption and key generation. * - * @since 12.1 + * @since 12.1 + * @deprecated 4.0 Without replacment use JCryptCipherCrypto */ class JCryptCipherRijndael256 extends JCryptCipherMcrypt {