mirror of
https://github.com/nextcloud/passman.git
synced 2024-11-14 11:57:38 +08:00
69 lines
2.9 KiB
XML
69 lines
2.9 KiB
XML
<?xml version="1.0"?>
|
|
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
|
<id>passman</id>
|
|
<name>Passman</name>
|
|
<summary>Passman is a full featured password manager.</summary>
|
|
<description><![CDATA[Passman is a full featured password manager.
|
|
Features:
|
|
- Vaults
|
|
- Vault key is never sent to the server
|
|
- Browser extension for easy access to passwords
|
|
- Android app for on the road access
|
|
- 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 )
|
|
For an demo of this app visit [https://demo.passman.cc](https://demo.passman.cc)
|
|
]]></description>
|
|
<version>2.4.9</version>
|
|
<licence>agpl</licence>
|
|
<author homepage="https://github.com/brantje">Sander Brand</author>
|
|
<author homepage="https://github.com/animalillo">Marcos Zuriaga</author>
|
|
<namespace>Passman</namespace>
|
|
<documentation>
|
|
<admin>https://github.com/nextcloud/passman#readme</admin>
|
|
<developer>https://github.com/nextcloud/passman/wiki</developer>
|
|
</documentation>
|
|
<category>tools</category>
|
|
<website>https://demo.passman.cc</website>
|
|
<bugs>https://github.com/nextcloud/passman/issues</bugs>
|
|
<repository type="git">https://github.com/nextcloud/passman.git</repository>
|
|
<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>
|
|
<screenshot small-thumbnail="https://img.passman.cc/thumbs/password_audit.png">https://img.passman.cc/password_audit.png</screenshot>
|
|
<dependencies>
|
|
<php min-version="8.0"/>
|
|
<database>sqlite</database>
|
|
<database>pgsql</database>
|
|
<database min-version="5.5">mysql</database>
|
|
<lib>openssl</lib>
|
|
<nextcloud min-version="26" max-version="29"/>
|
|
</dependencies>
|
|
|
|
<background-jobs>
|
|
<job>OCA\Passman\BackgroundJob\ExpireCredentials</job>
|
|
</background-jobs>
|
|
|
|
<repair-steps>
|
|
<post-migration>
|
|
<step>OCA\Passman\Migration\ServerSideEncryption</step>
|
|
</post-migration>
|
|
</repair-steps>
|
|
|
|
<navigations>
|
|
<navigation>
|
|
<name>Passwords</name>
|
|
<route>passman.Page.index</route>
|
|
<order>10</order>
|
|
</navigation>
|
|
</navigations>
|
|
|
|
<settings>
|
|
<admin>OCA\Passman\Settings\Admin</admin>
|
|
</settings>
|
|
</info>
|