Przeglądaj źródła

The encryption decrypt position can be int or string

The public API said string, internally we treated it as int. In reality
both are used. Let's reflect that in the documented argument type.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
tags/v21.0.0beta1
Christoph Wurst 3 lat temu
rodzic
commit
b2de9a6f9e
No account linked to committer's email address

+ 1
- 1
apps/encryption/lib/Crypto/Crypt.php Wyświetl plik

@@ -459,7 +459,7 @@ class Crypt {
* @param string $passPhrase
* @param string $cipher
* @param int $version
* @param int $position
* @param int|string $position
* @return string
* @throws DecryptionFailedException
*/

+ 1
- 1
apps/encryption/lib/Crypto/Encryption.php Wyświetl plik

@@ -360,7 +360,7 @@ class Encryption implements IEncryptionModule {
* decrypt data
*
* @param string $data you want to decrypt
* @param int $position
* @param int|string $position
* @return string decrypted data
* @throws DecryptionFailedException
*/

+ 1
- 1
lib/public/Encryption/IEncryptionModule.php Wyświetl plik

@@ -102,7 +102,7 @@ interface IEncryptionModule {
* decrypt data
*
* @param string $data you want to decrypt
* @param string $position position of the block we want to decrypt
* @param int|string $position position of the block we want to decrypt
*
* @return mixed decrypted data
*

Ładowanie…
Anuluj
Zapisz