]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/streams/crypto/class_EncryptableStream.php
Added new interfaces Handleable/-DataSet and ProtocolHandler (no content yet).
[core.git] / inc / classes / interfaces / streams / crypto / class_EncryptableStream.php
index d40e19158bc36c414c78694c549104bc86ddd727..69b0f740722db240842a8cd3644395b9026bd728 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An EncryptableStream interface
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface EncryptableStream extends Streamable {
+interface EncryptableStream extends Stream {
        /**
         * Encrypt the string with fixed salt
         *
@@ -29,7 +29,7 @@ interface EncryptableStream extends Streamable {
         * @param       $key            Optional key, if none provided, a random key will be generated
         * @return      $encrypted      Encrypted string
         */
-       function encryptStream ($str, $key = null);
+       function encryptStream ($str, $key = NULL);
 
        /**
         * Decrypt the string with fixed salt