summaryrefslogtreecommitdiffstats
path: root/apps/encryption
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexNextcloud bot2022-09-082-2/+10
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #33895 from nextcloud/fix/fix-apps-typosCarl Schwan2022-09-061-1/+1
|\ | | | | Fix typos in apps/ subdirectory
| * Fix typos in apps/ subdirectoryluz paz2022-09-051-1/+1
| | | | | | | | | | | | | | Found via `codespell -q 3 -S l10n,./apps/files_external/3rdparty -L adn,ba,boxs,keypair,jus,optionel,ressource,tabel ./apps/` Signed-off-by: luz paz <luzpaz@github.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
* | [tx-robot] updated from transifexNextcloud bot2022-09-062-0/+10
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-08-272-0/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #33593 from nextcloud/improve-binary-cachingCarl Schwan2022-08-241-3/+3
|\ | | | | Move findBinaryFinder and isFunctionEnabled away from OC_Helper
| * Move findBinaryFinder and isFunctionEnabled away from OC_HelperCarl Schwan2022-08-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | findBinaryFinder is now a service that is still private but with some minor optimization (remove the hasKey check). isFunctionEnabled is now in OCP\Util Both function are still keep but all internal usage in nextcloud/server were migrated to the new usage, so that we can remove it in 26 Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | [tx-robot] updated from transifexNextcloud bot2022-08-232-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #33433 from nextcloud/fix/add-option-to-fix-encryptedCôme Chilliet2022-08-222-26/+43
|\ \ | |/ |/| Fix encryption:fix-encrypted-version command when encrypted is set to 0
| * Adapt test to fixed command output.Côme Chilliet2022-08-041-3/+14
| | | | | | | | | | | | | | No user and non-existing user are now correctly treated as two separated cases Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * Fix encryption:fix-encrypted-version command when encrypted is set to 0Côme Chilliet2022-08-021-0/+16
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
| * Improve typing in FixEncryptedVersion commandCôme Chilliet2022-08-021-23/+13
| | | | | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-142-2/+2
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-132-0/+10
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #32363 from nextcloud/cleanup/remove-long-deprecated-classesCarl Schwan2022-08-081-1/+1
|\ \ | | | | | | Remove OCP\App and OCP\BackgroundJob
| * | Remove OCP\App and OCP\BackgroundJobCarl Schwan2022-08-011-1/+1
| |/ | | | | | | | | | | | | | | | | | | Both deprecated since NC 23 IAppManager is the replacement for OCP\App unfortunately it can't be dependency injected in classes used by the installed otherwise the database connection is initialised too early Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | [tx-robot] updated from transifexNextcloud bot2022-08-062-28/+28
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-08-052-8/+8
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Make Color class publicCarl Schwan2022-07-051-7/+7
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* [tx-robot] updated from transifexNextcloud bot2022-06-102-0/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-06-092-0/+10
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Remove at() matcher use from encryption testsCôme Chilliet2022-05-243-33/+43
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-05-2444-44/+44
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Cleanup and compileJohn Molakvoæ2022-05-132-0/+17
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Migrate apps scssJohn Molakvoæ2022-05-131-1/+1
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Migrate to static icons coloursJohn Molakvoæ2022-05-101-5/+5
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* Merge pull request #32110 from plumbeo/binary-encoding-4Vincent Petry2022-05-053-35/+85
|\ | | | | Save encrypted files in binary format
| * Save encrypted files in binary formatplumbeo2022-05-043-35/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | Default to the more space-efficient binary encoding for newly encrypted files instead of the traditional base64 encoding, eliminating the 33% overhead. The new option 'encryption.use_legacy_encoding' allows to force the legacy encoding format if needed. Files encoded in the old format remain readable. Based on https://github.com/owncloud/encryption/pull/224 and https://github.com/owncloud/core/pull/38249 by karakayasemi. Signed-off-by: plumbeo <plumbeo@users.noreply.github.com>
* | [tx-robot] updated from transifexNextcloud bot2022-05-052-4/+4
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-05-02124-468/+108
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | [tx-robot] updated from transifexNextcloud bot2022-04-282-2/+2
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-04-182-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-04-172-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Master is now 25Joas Schilling2022-04-141-2/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Fix an issue with the search backend updateCarl Schwan2022-04-142-1/+6
| | | | | | And update autoloader Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* [tx-robot] updated from transifexNextcloud bot2022-04-062-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-04-052-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Build autoloader with new composer versionCôme Chilliet2022-03-305-15/+8
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-03-302-26/+26
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-03-172-2/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Update composer generated files to latest versionCarl Schwan2022-03-141-1/+1
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* [tx-robot] updated from transifexNextcloud bot2022-02-272-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-02-252-4/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-02-202-2/+2
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-02-152-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-02-062-2/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-02-052-6/+6
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-02-022-2/+12
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* [tx-robot] updated from transifexNextcloud bot2022-01-242-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #30508 from nextcloud/fix/psaml-binCarl Schwan2022-01-134-6/+6
|\ | | | | Fix psalm not running