You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

info.xml 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?xml version="1.0"?>
  2. <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
  4. <id>encryption</id>
  5. <name>Default encryption module</name>
  6. <summary>Default encryption module for server-side encryption</summary>
  7. <description>
  8. In order to use this encryption module you need to enable server-side
  9. encryption in the admin settings. Once enabled this module will encrypt
  10. all your files transparently. The encryption is based on AES 256 keys.
  11. The module won't touch existing files, only new files will be encrypted
  12. after server-side encryption was enabled. It is also not possible to
  13. disable the encryption again and switch back to a unencrypted system.
  14. Please read the documentation to know all implications before you decide
  15. to enable server-side encryption.
  16. </description>
  17. <version>2.14.0</version>
  18. <licence>agpl</licence>
  19. <author>Bjoern Schiessle</author>
  20. <author>Clark Tomlinson</author>
  21. <types>
  22. <filesystem/>
  23. </types>
  24. <documentation>
  25. <user>user-encryption</user>
  26. <admin>admin-encryption</admin>
  27. </documentation>
  28. <category>files</category>
  29. <category>security</category>
  30. <bugs>https://github.com/nextcloud/server/issues</bugs>
  31. <dependencies>
  32. <lib>openssl</lib>
  33. <nextcloud min-version="26" max-version="26"/>
  34. </dependencies>
  35. <repair-steps>
  36. <post-migration>
  37. <step>OCA\Encryption\Migration\SetMasterKeyStatus</step>
  38. </post-migration>
  39. </repair-steps>
  40. <commands>
  41. <command>OCA\Encryption\Command\EnableMasterKey</command>
  42. <command>OCA\Encryption\Command\DisableMasterKey</command>
  43. <command>OCA\Encryption\Command\RecoverUser</command>
  44. <command>OCA\Encryption\Command\ScanLegacyFormat</command>
  45. <command>OCA\Encryption\Command\FixEncryptedVersion</command>
  46. </commands>
  47. <settings>
  48. <admin>OCA\Encryption\Settings\Admin</admin>
  49. <personal>OCA\Encryption\Settings\Personal</personal>
  50. </settings>
  51. </info>