X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fstreams%2Fcrypto%2Fclass_EncryptableStream.php;h=2365ac9cba8d08c98c9e76fc60956d4a113ff58d;hp=3c2a5741d8c15726a7f510e858d68fbe8ffb1449;hb=66e68715d3d5a5e7fd5a3046471914ef3f9dd4b4;hpb=84e2207412d3c6ea9f940a83b2cdd4503509808a diff --git a/inc/classes/interfaces/streams/crypto/class_EncryptableStream.php b/inc/classes/interfaces/streams/crypto/class_EncryptableStream.php index 3c2a5741..2365ac9c 100644 --- a/inc/classes/interfaces/streams/crypto/class_EncryptableStream.php +++ b/inc/classes/interfaces/streams/crypto/class_EncryptableStream.php @@ -2,11 +2,11 @@ /** * An EncryptableStream interface * - * @author Roland Haeder + * @author Roland Haeder * @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