Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rust-keylock/rust-keylock-lib
The rust-keylock password manager
https://github.com/rust-keylock/rust-keylock-lib
android encryption javafx password-manager rust-lang
Last synced: 4 months ago
JSON representation
The rust-keylock password manager
- Host: GitHub
- URL: https://github.com/rust-keylock/rust-keylock-lib
- Owner: rust-keylock
- License: gpl-3.0
- Created: 2017-02-14T11:53:15.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-01T11:40:01.000Z (11 months ago)
- Last Synced: 2024-09-28T12:04:49.405Z (4 months ago)
- Topics: android, encryption, javafx, password-manager, rust-lang
- Language: Rust
- Homepage: https://rust-keylock.github.io/
- Size: 5.77 MB
- Stars: 18
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://app.travis-ci.com/rust-keylock/rust-keylock-lib.svg?branch=master)](https://app.travis-ci.com/rust-keylock/rust-keylock-lib)
[![crates.io](https://img.shields.io/crates/v/rust_keylock.svg)](https://crates.io/crates/rust_keylock)
[![codecov](https://codecov.io/gh/rust-keylock/rust-keylock-lib/branch/master/graph/badge.svg)](https://codecov.io/gh/rust-keylock/rust-keylock-lib)[![snapcraft](https://img.shields.io/f-droid/v/org.astonbitecode.rustkeylock.svg)](https://f-droid.org/en/packages/org.astonbitecode.rustkeylock/)
[![rust-keylock-ui](https://snapcraft.io//rust-keylock-ui/badge.svg)](https://snapcraft.io/rust-keylock-ui)## General
___rust-keylock___ is a password manager and its goals are to be:
* Secure
* Simple to use
* Portable
* ExtensibleThe core logic is written in [Rust](https://www.rust-lang.org), but the presentation/User interaction parts are in different languages.
## Warning
The project has not yet received any formal / official security reviews. Use it at your own risk.
## Features
### Security
* The data is locked with a user-defined master password, using _bcrypt_ password hashing
* Encryption using _AES_ with _CTR_ mode
* Data integrity checks with SHA3 (Keccak)
* During runtime, the passwords are kept encrypted in memory
* During runtime, the encryption keys are stored in safe, non-swappable memory
* Upon saving, the encryption keys change, even if the user master password remains the same. This results to different encrypted products, even if the data that is being encrypted is the same.
* Passphrases generation using [Diceware](https://theworld.com/~reinhold/diceware.html).
* Passwords health check against [pwned passwords list](https://www.troyhunt.com/ive-just-launched-pwned-passwords-version-2/), leveraging the [k-anonimity API](https://blog.cloudflare.com/validating-leaked-passwords-with-k-anonymity/).### Data Availability
* Synchronization over Dropbox
* Synchronization over Nextcloud or Owncloud
* Export/import encrypted passwords to/from the filesystem
* Automatic local backups
### Application Portability* [Shell implementation](https://github.com/rust-keylock/rust-keylock-shell).
* [JavaFX implementation](https://github.com/rust-keylock/rust-keylock-ui).
* Using the [j4rs crate](https://github.com/astonbitecode/j4rs)
* [Android implementation](https://github.com/rust-keylock/rust-keylock-android)
* Using the [j4rs crate](https://github.com/astonbitecode/j4rs)See how to [download and install](https://rust-keylock.github.io/download/rkl/).
## FAQ
On the Project [website](https://rust-keylock.github.io/faq/rkl/).
## Wiki
On the Project [website](https://rust-keylock.github.io/wiki/).