X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Finterfaces%2Fcrypto%2Fclass_Cryptable.php;h=908002567ce3b2df45c99a355f60c10b31d86661;hb=202f8c1c1d46d1292918b7110547952446a53391;hp=613f5057707dcd97590b998614fe5b7a0bd0689a;hpb=95639d1f3e08fc874abad5f8adeac719bbdb246f;p=core.git diff --git a/inc/classes/interfaces/crypto/class_Cryptable.php b/inc/classes/interfaces/crypto/class_Cryptable.php index 613f5057..90800256 100644 --- a/inc/classes/interfaces/crypto/class_Cryptable.php +++ b/inc/classes/interfaces/crypto/class_Cryptable.php @@ -2,11 +2,11 @@ /** * A helper class for cryptographical things like hashing passwords and so on * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 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 @@ -30,9 +30,10 @@ interface Cryptable extends FrameworkInterface { * * @param $str Unhashed string * @param $oldHash A hash from previous hashed string + * @param $withFixed Whether to include a fixed salt (not recommended in p2p applications) * @return $hashed The hashed and salted string */ - function hashString ($str, $oldHash = ''); + function hashString ($str, $oldHash = '', $withFixed = TRUE); /** * Encrypt the string with fixed salt @@ -41,7 +42,7 @@ interface Cryptable extends FrameworkInterface { * @param $key Optional key, if none provided, a random key will be generated * @return $encrypted Encrypted string */ - function encryptString ($str, $key = null); + function encryptString ($str, $key = NULL); /** * Decrypt the string with fixed salt