-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4f703b9
commit dbbc2f0
Showing
4 changed files
with
50 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,45 @@ | ||
# StreamDeck-KeePass | ||
Simple interface to retrieve information from KeePass database. | ||
# KeePass for StreamDeck | ||
## Description | ||
|
||
I wanted to learn how to use the [Elgato Stream Deck SDK](https://developer.elgato.com/documentation/stream-deck/sdk/overview/) using BarRaider's [Stream Deck Tools](https://github.com/BarRaider/streamdeck-tools), so I created this simple plug-in. | ||
Simple interface to retrieve information from a KeePass database and generate passwords using [KeePassLib](https://www.nuget.org/packages/KeePassLib/). | ||
|
||
I wanted to learn how to use the [Elgato Stream Deck SDK](https://developer.elgato.com/documentation/stream-deck/sdk/overview/) using BarRaider's [Stream Deck Tools](https://github.com/BarRaider/streamdeck-tools), so I created this simple plug-in. | ||
|
||
## Features | ||
|
||
#### Retrieve | ||
|
||
It retrieves a field of a stored entry from a `.kdbx` file and copies it to the clipboard. | ||
|
||
It uses the following configuration: | ||
|
||
- **KeePass db path.** The absolute path to the KeePass file. | ||
- **KeePass db password.** The main password of the KeePass file. | ||
- **Entry Name.** The name of the entry that has the desired information. | ||
- **Field to retrieve.** The field whose content will be copied to the clipboard | ||
- Password | ||
- Username | ||
- Notes | ||
- URL | ||
|
||
|
||
|
||
#### Generate | ||
|
||
it will generate a random password using [KeePassLib](https://www.nuget.org/packages/KeePassLib/) using the given configuration. | ||
|
||
It uses the following configuration: | ||
|
||
- **Password Length.** Default `20`. | ||
- **Lower Case.** `abcdefghijklmnopqrstuvwxyz`. Default `true`. | ||
- **Upper Case.** `ABCDEFGHIJKLMNOPQRSTUVWXYZ`. Default `true`. | ||
- **Use Digits.** `0123456789`. Default `true`. | ||
- **Use Punctuation.** `,.;:`. Default `true`. | ||
- **Use Brackets.** `()[]{}<>`. Default `true`. | ||
- **Use Special Characters.** ``!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~``. Default `true`. | ||
- **Exclude Look-Alike characters.** It will avoid using two character that look similar, like `O` and `0`. Default `false`. | ||
- **Must occur at most Once.** It will prevent characters from appearing more than once. Default `false`. | ||
|
||
Check [KeePass Password Generator](https://keepass.info/help/base/pwgenerator.html) help site for more information. | ||
|
||
The icon for this action is a modified version of *iOS Filled* at [Icon8](https://icons8.com). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters