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
EvanDotPro committed May 28, 2012
3 parents b926b75 + 1c05de1 + 5f99ad4 commit f31cc62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BlockCipher.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public function getKeyIteration()
*/
public function setBinaryOutput($value)
{
$this->binary = (boolean)$value;
$this->binaryOutput = (boolean)$value;
return $this;
}

Expand All @@ -191,7 +191,7 @@ public function setBinaryOutput($value)
*/
public function getBinaryOutput()
{
return $this->binary;
return $this->binaryOutput;
}

/**
Expand Down

0 comments on commit f31cc62

Please sign in to comment.