]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/crypto/class_Cryptable.php
Some cleanups, more usage of ObjectFactory:
[core.git] / inc / classes / interfaces / crypto / class_Cryptable.php
index fec45d924023881921b812c05c010557c3a6ffc2..14533c3d6053aa314d770e1da9b5ac18d11a0fe1 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -32,15 +32,16 @@ interface Cryptable extends FrameworkInterface {
         * @param       $oldHash        A hash from previous hashed string
         * @return      $hashed         The hashed and salted string
         */
-       function hashString ($str, $oldHash = "");
+       function hashString ($str, $oldHash = '');
 
        /**
         * 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 encryptString ($str);
+       function encryptString ($str, $key = NULL);
 
        /**
         * Decrypt the string with fixed salt