Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[3.x] Deprecate old & vulnerable ciphers #12135

Merged
merged 1 commit into from
Sep 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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