This commit is contained in:
Thomas Müller 2013-07-01 21:12:21 +02:00
parent d5c4854708
commit a7f2563990

View file

@ -123,7 +123,7 @@ class Helper {
$view->file_put_contents('/public-keys/' . $recoveryKeyId . '.public.key', $keypair['publicKey']);
// Encrypt private key empthy passphrase
// Encrypt private key empty passphrase
$encryptedPrivateKey = \OCA\Encryption\Crypt::symmetricEncryptFileContent($keypair['privateKey'], $recoveryPassword);
// Save private key
@ -211,7 +211,7 @@ class Helper {
/**
* check requirements for encryptoin app.
* check requirements for encryption app.
* @return bool true if requirements are met
*/
public static function checkRequirements() {
@ -224,4 +224,4 @@ class Helper {
return (bool) $result;
}
}
}