Fix for method in FrameworkConfiguration, removal of unneccessary code
[core.git] / inc / classes / main / streams / crypto / class_NullCryptoStream.php
index 864a896a106d8f30bba7ba6f89993b7b67251aa7..33ffdb82a4f860dbc4c82a8c52d9fea234a3b5d5 100644 (file)
@@ -45,6 +45,34 @@ class NullCryptoStream extends BaseStream implements EncryptableStream {
                // Return the instance
                return $streamInstance;
        }
+
+       /**
+        * Encrypt the string with fixed salt
+        *
+        * @param       $str            The unencrypted string
+        * @return      $encrypted      Encrypted string
+        */
+       public function encryptStream ($str) {
+               // Just handle it over
+               $encrypted = (string) $str;
+
+               // Return it
+               return $encrypted;
+       }
+
+       /**
+        * Decrypt the string with fixed salt
+        *
+        * @param       $encrypted      Encrypted string
+        * @return      $str            The unencrypted string
+        */
+       function decryptStream ($encrypted) {
+               // Just handle it over
+               $str = (string) $encrypted;
+
+               // Return it
+               return $str;
+       }
 }
 
 // [EOF]