info.xml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0"?>
  2. <info>
  3. <id>encryption</id>
  4. <description>
  5. In order to use this encryption module you need to enable server-side
  6. encryption in the admin settings. Once enabled this module will encrypt
  7. all your files transparently. The encryption is based on AES 256 keys.
  8. The module won't touch existing files, only new files will be encrypted
  9. after server-side encryption was enabled. It is also not possible to
  10. disable the encryption again and switch back to a unencrypted system.
  11. Please read the documentation to know all implications before you decide
  12. to enable server-side encryption.
  13. </description>
  14. <name>Default encryption module</name>
  15. <licence>AGPL</licence>
  16. <author>Bjoern Schiessle, Clark Tomlinson</author>
  17. <documentation>
  18. <user>user-encryption</user>
  19. <admin>admin-encryption</admin>
  20. </documentation>
  21. <version>1.6.0</version>
  22. <types>
  23. <filesystem/>
  24. </types>
  25. <dependencies>
  26. <lib>openssl</lib>
  27. <nextcloud min-version="12" max-version="12" />
  28. </dependencies>
  29. <settings>
  30. <admin>OCA\Encryption\Settings\Admin</admin>
  31. </settings>
  32. <commands>
  33. <command>OCA\Encryption\Command\EnableMasterKey</command>
  34. <command>OCA\Encryption\Command\MigrateKeys</command>
  35. </commands>
  36. </info>