Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
aa582ec4
Commit
aa582ec4
authored
13 years ago
by
Frank Karlitschek
Browse files
Options
Downloads
Patches
Plain Diff
more work on encryption
parent
4a334f0d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
lib/crypt.php
+45
-9
45 additions, 9 deletions
lib/crypt.php
lib/user.php
+1
-0
1 addition, 0 deletions
lib/user.php
lib/util.php
+1
-1
1 addition, 1 deletion
lib/util.php
settings/ajax/changepassword.php
+1
-0
1 addition, 0 deletions
settings/ajax/changepassword.php
with
48 additions
and
10 deletions
lib/crypt.php
+
45
−
9
View file @
aa582ec4
...
...
@@ -24,9 +24,10 @@
// Todo:
// Crypt/decrypt button in the userinterface
// setting if crypto should be on by default
// transparent decrypt/encrpt in filesystem.php
// don't use a password directly as encryption key. but a key which is stored on the server and encrypted with the user password. -> password change faster
// check if the block lenght of the encrypted data stays the same
require_once
(
'Crypt_Blowfish/Blowfish.php'
);
...
...
@@ -38,15 +39,50 @@ class OC_Crypt {
static
$encription_extension
=
'.encrypted'
;
public
static
function
createkey
(
$passcode
)
{
// generate a random key
$key
=
mt_rand
(
10000
,
99999
)
.
mt_rand
(
10000
,
99999
)
.
mt_rand
(
10000
,
99999
)
.
mt_rand
(
10000
,
99999
);
public
static
function
init
(
$login
,
$password
)
{
$_SESSION
[
'user_password'
]
=
$password
;
// save the password as passcode for the encryption
if
(
OC_User
::
isLoggedIn
()){
// does key exist?
if
(
!
file_exists
(
OC_Config
::
getValue
(
"datadirectory"
)
.
'/'
.
$login
.
'/encryption.key'
)){
OC_Crypt
::
createkey
(
$_SESSION
[
'user_password'
]);
}
}
}
// encrypt the key with the passcode of the user
$enckey
=
OC_Crypt
::
encrypt
(
$key
,
$passcode
);
// Write the file
file_put_contents
(
"
$SERVERROOT
/config/encryption.key"
,
$enckey
);
public
static
function
createkey
(
$passcode
)
{
if
(
OC_User
::
isLoggedIn
()){
// generate a random key
$key
=
mt_rand
(
10000
,
99999
)
.
mt_rand
(
10000
,
99999
)
.
mt_rand
(
10000
,
99999
)
.
mt_rand
(
10000
,
99999
);
// encrypt the key with the passcode of the user
$enckey
=
OC_Crypt
::
encrypt
(
$key
,
$passcode
);
// Write the file
$username
=
OC_USER
::
getUser
();
file_put_contents
(
OC_Config
::
getValue
(
"datadirectory"
)
.
'/'
.
$username
.
'/encryption.key'
,
$enckey
);
}
}
public
static
function
changekeypasscode
(
$newpasscode
)
{
if
(
OC_User
::
isLoggedIn
()){
$username
=
OC_USER
::
getUser
();
// read old key
$key
=
file_get_contents
(
OC_Config
::
getValue
(
"datadirectory"
)
.
'/'
.
$username
.
'/encryption.key'
);
// decrypt key with old passcode
$key
=
OC_Crypt
::
decrypt
(
$key
,
$_SESSION
[
'user_password'
]);
// encrypt again with new passcode
$key
=
OC_Crypt
::
encrypt
(
$key
,
$newpassword
);
// store the new key
file_put_contents
(
OC_Config
::
getValue
(
"datadirectory"
)
.
'/'
.
$username
.
'/encryption.key'
,
$key
);
$_SESSION
[
'user_password'
]
=
$newpasscode
;
}
}
/**
...
...
@@ -59,7 +95,7 @@ class OC_Crypt {
*/
public
static
function
encrypt
(
$content
,
$key
)
{
$bf
=
new
Crypt_Blowfish
(
$key
);
return
(
$bf
->
encrypt
(
$content
s
));
return
(
$bf
->
encrypt
(
$content
));
}
...
...
This diff is collapsed.
Click to expand it.
lib/user.php
+
1
−
0
View file @
aa582ec4
...
...
@@ -193,6 +193,7 @@ class OC_User {
if
(
$run
&&
self
::
checkPassword
(
$uid
,
$password
)){
$_SESSION
[
'user_id'
]
=
$uid
;
OC_Crypt
::
init
(
$uid
,
$password
);
OC_Hook
::
emit
(
"OC_User"
,
"post_login"
,
array
(
"uid"
=>
$uid
));
return
true
;
}
...
...
This diff is collapsed.
Click to expand it.
lib/util.php
+
1
−
1
View file @
aa582ec4
...
...
@@ -190,7 +190,7 @@ class OC_Util {
global
$SERVERROOT
;
global
$CONFIG_DATADIRECTORY
;
$CONFIG_DATADIRECTORY_ROOT
=
OC_Config
::
getValue
(
"datadirectory"
,
"
$SERVERROOT
/data"
);
;
$CONFIG_DATADIRECTORY_ROOT
=
OC_Config
::
getValue
(
"datadirectory"
,
"
$SERVERROOT
/data"
);
$CONFIG_BACKUPDIRECTORY
=
OC_Config
::
getValue
(
"backupdirectory"
,
"
$SERVERROOT
/backup"
);
$CONFIG_INSTALLED
=
OC_Config
::
getValue
(
"installed"
,
false
);
$errors
=
array
();
...
...
This diff is collapsed.
Click to expand it.
settings/ajax/changepassword.php
+
1
−
0
View file @
aa582ec4
...
...
@@ -29,6 +29,7 @@ if( !OC_User::checkPassword( $_SESSION["user_id"], $_POST["oldpassword"] )){
// Change password
if
(
OC_User
::
setPassword
(
$_SESSION
[
"user_id"
],
$_POST
[
"password"
]
)){
echo
json_encode
(
array
(
"status"
=>
"success"
,
"data"
=>
array
(
"message"
=>
$l
->
t
(
"Password changed"
)
)));
OC_Crypt
::
changekeypasscode
(
$_POST
[
"password"
])
{
}
else
{
echo
json_encode
(
array
(
"status"
=>
"error"
,
"data"
=>
array
(
"message"
=>
$l
->
t
(
"Unable to change password"
)
)));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment