https://github.com/haldih/swp
SecureWebPass
https://github.com/haldih/swp
aes argon2 boost boost-beast http https sqlite3
Last synced: 10 months ago
JSON representation
SecureWebPass
- Host: GitHub
- URL: https://github.com/haldih/swp
- Owner: HaldiH
- License: gpl-2.0
- Created: 2019-12-09T15:30:33.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-12T18:57:50.000Z (almost 6 years ago)
- Last Synced: 2025-03-02T01:45:46.437Z (about 1 year ago)
- Topics: aes, argon2, boost, boost-beast, http, https, sqlite3
- Language: C++
- Size: 313 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# server
A secured password manager using SQLite to store passwords and AES to encrypt each row
To generate the self-signed certificates, use OpenSSL:
```bash
openssl dhparam -out dh.pem 4096 # or 2048 for faster generation
openssl req -newkey rsa:4096 -nodes -keyout key.pem -x509 -days 10000 -out cert.pem -subj "/C=FR/ST=H2/L=Annecy/O=HeavyEyelid/CN=www.example.com"
```