Updated domain without a dash :(
[core.git] / inc / classes / interfaces / streams / crypto / class_EncryptableStream.php
index 3c2a5741d8c15726a7f510e858d68fbe8ffb1449..2365ac9cba8d08c98c9e76fc60956d4a113ff58d 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, 2010 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 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
@@ -26,9 +26,10 @@ interface EncryptableStream extends Streamable {
         * Encrypt the string with fixed salt
         *
         * @param       $str            The unencrypted string
+        * @param       $key            Optional key, if none provided, a random key will be generated
         * @return      $encrypted      Encrypted string
         */
-       function encryptStream ($str);
+       function encryptStream ($str, $key = NULL);
 
        /**
         * Decrypt the string with fixed salt