0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 04:12:15 +02:00
keepassxc/README.md

79 lines
4.5 KiB
Markdown
Raw Normal View History

# KeePassXC [![Travis Build Status](https://travis-ci.org/keepassxreboot/keepassxc.svg?branch=develop)](https://travis-ci.org/keepassxreboot/keepassxc) [![Coverage Status](https://coveralls.io/repos/github/keepassxreboot/keepassxc/badge.svg)](https://coveralls.io/github/keepassxreboot/keepassxc) <a href='https://pledgie.com/campaigns/33487'><img alt='KeePassXC Authenticode Certificate Campaign!' align=right src='https://pledgie.com/campaigns/33487.png?skin_name=chrome' border='0'></a>
2014-03-23 20:25:15 +01:00
KeePass Cross-platform Community Edition
2016-10-03 03:30:17 +02:00
## About
[KeePassXC](https://keepassxc.org) is a community fork of [KeePassX](https://www.keepassx.org/) with the goal to extend and improve it with new features and bugfixes to provide a feature-rich, fully cross-platform and modern open-source password manager.
2014-03-23 20:25:15 +01:00
2017-01-25 00:03:00 +01:00
## Additional features compared to KeePassX
- Auto-Type on all three major platforms (Linux, Windows, OS X)
2017-01-25 00:03:00 +01:00
- Stand-alone password generator
- Password strength meter
- YukiKey HMAC-SHA1 authentication for unlocking databases
- Using website favicons as entry icons
2017-01-25 00:03:00 +01:00
- Merging of databases
- Automatic reload when the database changed on disk
- KeePassHTTP support for use with [PassIFox](https://addons.mozilla.org/en-us/firefox/addon/passifox/) in Mozilla Firefox and [chromeIPass](https://chrome.google.com/webstore/detail/chromeipass/ompiailgknfdndiefoaoiligalphfdae) in Google Chrome or Chromium.
- Many bug fixes
2017-01-25 00:03:00 +01:00
For a full list of features and changes, read the [CHANGELOG](CHANGELOG) document.
2016-10-06 05:03:13 +02:00
2017-01-25 00:03:00 +01:00
### Note about KeePassHTTP
KeePassHTTP is not a highly secure protocol and has certain flaw which allow an attacker to decrypt your passwords when they manage to intercept communication between a KeePassHTTP server and PassIFox/chromeIPass over a network connection (see [here](https://github.com/pfn/keepasshttp/issues/258) and [here](https://github.com/keepassxreboot/keepassxc/issues/147)). KeePassXC therefore strictly limits communication between itself and the browser plugin to your local computer. As long as your computer is not compromised, your passwords are fairly safe that way, but use it at your own risk!
2016-02-28 17:00:05 +01:00
### Installation
2017-01-25 00:03:00 +01:00
Pre-compiled binaries can be found on the [downloads page](https://keepassxc.org/download). Additionally, individual Linux distributions may ship their own versions, so please check out your distribution's package list to see if KeePassXC is available.
2017-01-25 00:03:00 +01:00
### Building KeePassXC yourself
2017-01-25 00:03:00 +01:00
*More detailed instructions are available in the INSTALL file or on the [Wiki page](https://github.com/keepassxreboot/keepassx/wiki/Install-Instruction-from-Source).*
2017-01-25 00:03:00 +01:00
First, you must download the KeePassXC [source tarball](https://keepassxc.org/download#source) or check out the latest version from our [Git repository](https://github.com/keepassxreboot/keepassxc).
2017-01-25 00:03:00 +01:00
To clone the project from Git, `cd` to a suitable location and run
```bash
git clone https://github.com/keepassxreboot/keepassxc.git
```
2017-01-25 00:03:00 +01:00
This will clone the entire contents of the repository and check out the current `develop` branch.
2017-01-25 00:03:00 +01:00
To update the project from within the project's folder, you can run the following command:
```bash
git pull
```
2017-01-25 00:03:00 +01:00
Once you have downloaded the source code, you can `cd` into the source code directory and build and install KeePassXC with
```
mkdir build
cd build
cmake -DWITH_TESTS=OFF ..
make -j8
sudo make install
```
2017-03-15 15:04:43 +01:00
cmake accepts the following options:
2017-01-25 00:03:00 +01:00
2017-03-15 15:04:43 +01:00
```
2017-03-15 15:26:40 +01:00
-DWITH_XC_AUTOTYPE=[ON|OFF] Enable/Disable Auto-Type (default: ON)
-DWITH_XC_HTTP=[ON|OFF] Enable/Disable KeePassHTTP and custom icon downloads (default: OFF)
-DWITH_XC_YUBIKEY=[ON|OFF] Enable/Disable YubiKey HMAC-SHA1 authentication support (default: OFF)
2017-03-15 15:04:43 +01:00
-DWITH_TESTS=[ON|OFF] Enable/Disable building of unit tests (default: ON)
-DWITH_GUI_TESTS=[ON|OFF] Enable/Disable building of GUI tests (default: OFF)
2017-03-15 15:26:40 +01:00
-DWITH_DEV_BUILD=[ON|OFF] Enable/Disable deprecated method warnings (default: OFF)
-DWITH_ASAN=[ON|OFF] Enable/Disable address sanitizer checks (Linux only) (default: OFF)
-DWITH_COVERAGE=[ON|OFF] Enable/Disable coverage tests (GCC only) (default: OFF)
2017-03-15 15:04:43 +01:00
```
### Contributing
We are always looking for suggestions how to improve our application. If you find any bugs or have an idea for a new feature, please let us know by opening a report in our [issue tracker](https://github.com/keepassxreboot/keepassxc/issues) on GitHub or join us on IRC on freenode channels #keepassxc or #keepassxc-dev.
2017-01-25 00:03:00 +01:00
You can of course also directly contribute your own code. We are happy to accept your pull requests.
2017-01-25 00:03:00 +01:00
Please read the [CONTRIBUTING](.github/CONTRIBUTING.md) document for further information.