2016-09-09 23:36:35 +08:00
|
|
|
<?xml version="1.0"?>
|
2017-07-29 18:10:50 +08:00
|
|
|
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
2016-09-09 23:36:35 +08:00
|
|
|
<id>passman</id>
|
|
|
|
<name>Passman</name>
|
2016-12-28 20:27:40 +08:00
|
|
|
<summary>Passman is a full featured password manager.</summary>
|
2017-02-06 03:19:35 +08:00
|
|
|
<description><![CDATA[Passman is a full featured password manager.
|
|
|
|
Features:
|
|
|
|
- Vaults
|
|
|
|
- Vault key is never sent to the server
|
2017-08-06 20:32:29 +08:00
|
|
|
- Browser extension for easy access to passwords
|
|
|
|
- Android app for on the road access
|
2017-02-06 03:19:35 +08:00
|
|
|
- Credentials are client side encrypted with 256bit AES
|
|
|
|
- Credentials are server side encrypted with 256bit AES
|
|
|
|
- Ability to add custom fields to credentials
|
|
|
|
- Built-in OTP (One Time Password) generator
|
|
|
|
- Password analyzer
|
|
|
|
- Share passwords internally and via link in a secure manner.
|
|
|
|
- Import from various password managers (KeePass, LastPass, DashLane, ZOHO, Clipperz.is )
|
2016-12-22 21:40:40 +08:00
|
|
|
For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
2016-12-22 21:12:02 +08:00
|
|
|
]]></description>
|
2023-01-19 00:38:42 +08:00
|
|
|
<version>2.4.3</version>
|
2017-07-29 18:10:50 +08:00
|
|
|
<licence>agpl</licence>
|
2016-12-22 08:19:22 +08:00
|
|
|
<author homepage="https://github.com/brantje">Sander Brand</author>
|
2016-12-22 21:12:02 +08:00
|
|
|
<author homepage="https://github.com/animalillo">Marcos Zuriaga</author>
|
2016-09-09 23:36:35 +08:00
|
|
|
<namespace>Passman</namespace>
|
2016-12-22 08:19:22 +08:00
|
|
|
<documentation>
|
|
|
|
<admin>https://github.com/nextcloud/passman#readme</admin>
|
2017-02-23 20:49:06 +08:00
|
|
|
<developer>https://github.com/nextcloud/passman/wiki</developer>
|
2016-12-22 08:19:22 +08:00
|
|
|
</documentation>
|
2016-12-28 20:35:16 +08:00
|
|
|
<category>tools</category>
|
2016-12-22 21:12:02 +08:00
|
|
|
<website>https://demo.passman.cc</website>
|
2016-09-09 23:36:35 +08:00
|
|
|
<bugs>https://github.com/nextcloud/passman/issues</bugs>
|
2016-12-22 08:19:22 +08:00
|
|
|
<repository type="git">https://github.com/nextcloud/passman.git</repository>
|
2016-12-22 21:12:02 +08:00
|
|
|
<screenshot small-thumbnail="https://img.passman.cc/thumbs/overview.png">https://img.passman.cc/overview.png</screenshot>
|
|
|
|
<screenshot small-thumbnail="https://img.passman.cc/thumbs/edit_credential.png">https://img.passman.cc/edit_credential.png</screenshot>
|
|
|
|
<screenshot small-thumbnail="https://img.passman.cc/thumbs/share_credential.png">https://img.passman.cc/share_credential.png</screenshot>
|
2016-12-23 01:34:44 +08:00
|
|
|
<screenshot small-thumbnail="https://img.passman.cc/thumbs/password_audit.png">https://img.passman.cc/password_audit.png</screenshot>
|
2016-09-09 23:36:35 +08:00
|
|
|
<dependencies>
|
2021-03-17 00:36:04 +08:00
|
|
|
<php min-version="7.4"/>
|
2016-12-22 08:19:22 +08:00
|
|
|
<database>sqlite</database>
|
2017-07-29 17:53:21 +08:00
|
|
|
<database>pgsql</database>
|
2017-07-29 18:10:50 +08:00
|
|
|
<database min-version="5.5">mysql</database>
|
2017-01-03 05:03:03 +08:00
|
|
|
<lib>openssl</lib>
|
2022-10-21 03:50:29 +08:00
|
|
|
<nextcloud min-version="20" max-version="25"/>
|
2016-09-09 23:36:35 +08:00
|
|
|
</dependencies>
|
2016-12-30 19:51:32 +08:00
|
|
|
|
2017-07-29 18:10:50 +08:00
|
|
|
<background-jobs>
|
|
|
|
<job>OCA\Passman\BackgroundJob\ExpireCredentials</job>
|
|
|
|
</background-jobs>
|
|
|
|
|
2017-01-03 05:03:03 +08:00
|
|
|
<repair-steps>
|
|
|
|
<post-migration>
|
|
|
|
<step>OCA\Passman\Migration\ServerSideEncryption</step>
|
|
|
|
</post-migration>
|
|
|
|
</repair-steps>
|
|
|
|
|
2021-03-14 03:05:16 +08:00
|
|
|
<settings>
|
|
|
|
<admin>OCA\Passman\Settings\Admin</admin>
|
|
|
|
</settings>
|
2017-07-29 17:53:21 +08:00
|
|
|
</info>
|