From df0c7d8472a3045835a6274e8787f4e52491ec22 Mon Sep 17 00:00:00 2001 From: Joseph Schilz Date: Fri, 21 Aug 2015 13:51:40 -0700 Subject: [PATCH] Make Cipher::decryptStream public --- src/Cipher.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cipher.php b/src/Cipher.php index 72f6d20..e51812d 100644 --- a/src/Cipher.php +++ b/src/Cipher.php @@ -45,7 +45,7 @@ public function decrypt($encryptedMessage) { } - protected function decryptStream($encryptedStream) { + public function decryptStream($encryptedStream) { if (is_null($encryptedStream)) { return null; } else { @@ -83,4 +83,4 @@ public static function getInstance() { -} \ No newline at end of file +}