diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2023-04-04 10:38:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-04 10:38:02 +0200 |
commit | 7fdb23928f793c8eda6b175a602750c718711cfd (patch) | |
tree | 6bc8e6d99cb852c1a1412a813142c95d683bc6dc /lib | |
parent | 7ab44b2d285ca2bfb9098746d2bb12968343b7c3 (diff) | |
parent | 430009b8e2c1d33f9714c4177fb415bb11285f0c (diff) | |
download | nextcloud-server-7fdb23928f793c8eda6b175a602750c718711cfd.tar.gz nextcloud-server-7fdb23928f793c8eda6b175a602750c718711cfd.zip |
Merge pull request #37243 from nextcloud/enh/openssl-get-rid-of-rc4
Getting rid of openssl_seal and rc4 in server side encryption
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/Encryption/IEncryptionModule.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/Encryption/IEncryptionModule.php b/lib/public/Encryption/IEncryptionModule.php index d0ae430a81a..37db2729335 100644 --- a/lib/public/Encryption/IEncryptionModule.php +++ b/lib/public/Encryption/IEncryptionModule.php @@ -60,7 +60,7 @@ interface IEncryptionModule { * @param array $header contains the header data read from the file * @param array $accessList who has access to the file contains the key 'users' and 'public' * - * $return array $header contain data as key-value pairs which should be + * @return array $header contain data as key-value pairs which should be * written to the header, in case of a write operation * or if no additional data is needed return a empty array * @since 8.1.0 |