Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'ezimuel/feature/crypt'
Browse files Browse the repository at this point in the history
  • Loading branch information
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Symmetric/Mcrypt.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,10 @@ class Mcrypt implements SymmetricInterface
protected $supportedModes = array(
'cbc' => MCRYPT_MODE_CBC,
'cfb' => MCRYPT_MODE_CFB,
'ctr' => 'ctr',
'ofb' => MCRYPT_MODE_OFB,
'nofb' => MCRYPT_MODE_NOFB
'nofb' => MCRYPT_MODE_NOFB,
'ncfb' => 'ncfb'
);

/**
Expand Down

0 comments on commit 8aa4138

Please sign in to comment.