Skip to content

Commit

Permalink
Merge pull request #12135 from zero-24/deprecate_unsecure_cipher
Browse files Browse the repository at this point in the history
[3.x] Deprecate old & vulnerable ciphers
  • Loading branch information
wilsonge authored Sep 22, 2016
2 parents 43af0c4 + acee3cf commit 37e0128
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion libraries/joomla/crypt/cipher/3des.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
3 changes: 2 additions & 1 deletion libraries/joomla/crypt/cipher/blowfish.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
3 changes: 2 additions & 1 deletion libraries/joomla/crypt/cipher/mcrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
3 changes: 2 additions & 1 deletion libraries/joomla/crypt/cipher/rijndael256.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 37e0128

Please sign in to comment.