diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2015-08-07 14:04:17 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2015-08-07 15:21:08 +0200 |
commit | 62bc0e5264af50be48dbcbb720b7bd16e8d88df5 (patch) | |
tree | ad0c95913483a7ed2d866066af4ed3d5c00bab6c /apps/encryption/tests/lib/RecoveryTest.php | |
parent | 43888bb9bf46928acfe79084377b96133609ef6c (diff) | |
download | nextcloud-server-62bc0e5264af50be48dbcbb720b7bd16e8d88df5.tar.gz nextcloud-server-62bc0e5264af50be48dbcbb720b7bd16e8d88df5.zip |
use password hash instead of the plain password to encrypt the private key
Diffstat (limited to 'apps/encryption/tests/lib/RecoveryTest.php')
-rw-r--r-- | apps/encryption/tests/lib/RecoveryTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/encryption/tests/lib/RecoveryTest.php b/apps/encryption/tests/lib/RecoveryTest.php index 8d5d31af0b8..c0624a36be9 100644 --- a/apps/encryption/tests/lib/RecoveryTest.php +++ b/apps/encryption/tests/lib/RecoveryTest.php @@ -96,7 +96,7 @@ class RecoveryTest extends TestCase { ->method('decryptPrivateKey'); $this->cryptMock->expects($this->once()) - ->method('symmetricEncryptFileContent') + ->method('encryptPrivateKey') ->willReturn(true); $this->assertTrue($this->instance->changeRecoveryKeyPassword('password', |