Skip to content
Snippets Groups Projects
Commit e93bb513 authored by Sam Tuke's avatar Sam Tuke
Browse files

Applied fix from kalassico for "Chiper text must be a string" bug...

Applied fix from kalassico for "Chiper text must be a string" bug (http://forum.owncloud.org/viewtopic.php?f=3&t=2586&p=5094)
parent 3b36a9b7
Branches
No related tags found
No related merge requests found
......@@ -44,7 +44,13 @@ class OC_Crypt {
}
public static function init($login,$password) {
$view1=new OC_FilesystemView('/');
if(!$view1->file_exists('/'.$login)){
$view1->mkdir('/'.$login);
}
$view=new OC_FilesystemView('/'.$login);
OC_FileProxy::$enabled=false;
if(!$view->file_exists('/encryption.key')){// does key exist?
OC_Crypt::createkey($login,$password);
......@@ -54,6 +60,7 @@ class OC_Crypt {
$_SESSION['enckey']=OC_Crypt::decrypt($key, $password);
}
/**
* get the blowfish encryption handeler for a key
* @param string $key (optional)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment