Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dkosmari/lssecrets
Show the contents of the secret keyring.
https://github.com/dkosmari/lssecrets
cpp cpp20 glibmm keyring libsecret linux secret-service security utility
Last synced: 2 days ago
JSON representation
Show the contents of the secret keyring.
- Host: GitHub
- URL: https://github.com/dkosmari/lssecrets
- Owner: dkosmari
- License: gpl-3.0
- Created: 2024-03-16T21:16:26.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-04-16T13:19:03.000Z (9 months ago)
- Last Synced: 2024-11-09T05:06:57.527Z (about 2 months ago)
- Topics: cpp, cpp20, glibmm, keyring, libsecret, linux, secret-service, security, utility
- Language: M4
- Homepage:
- Size: 41 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
lssecrets
=========This is a program to list the content of the [secret
keyring](https://specifications.freedesktop.org/secret-service/latest/) using
[libsecret](https://gnome.pages.gitlab.gnome.org/libsecret/).Usage
-----With no arguments, all unlocked collections and items are shown, without attributes or
secrets:lssecrets
To show item attributes, use the argument `--detail=3`:
lssecrets --detail=3
To show item attributes and secrets, use the argument `--detail=4`:
lssecrets --detail=4
If there are collections or items locked, use the option `--unlock` to unlock everything:
lssecrets --unlock
Both options can be combined, to unlock and show the secrets:
lssecrets --detail=4 --unlock
Dependencies
------------- A C++ compiler that supports `-std=c++20`.
- [libsecret](https://gnome.pages.gitlab.gnome.org/libsecret/)
- [glibmm](https://gitlab.gnome.org/GNOME/glibmm)Build and Installation
----------------------If you're building from a tarball, you can skip step 0.
0. Run `./bootstrap`
1. Run `./configure`
2. Run `make`
3. Optional: run `sudo make install`This software is a standard Automake package. Check the [INSTALL](INSTALL) file or run
`./configure --help` for more detailed instructions.