Skip to content

Commit

Permalink
Merge branch 'develop'. Update README, app description
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr-Kniaz committed Dec 17, 2024
2 parents 99e3c13 + c860033 commit e60579f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

<p align="center"><img src="pictures/ui-responsible-screenshots.png" alt="Screenshots"></p>

**HBDPG-2** *(Hashing-based Deterministic Password Generator – 2nd Gen)* is a open-source, cross-platform Web-application for deterministic password generation with a focus on security and brute-force attack resistance. The application is designed to solve the problem of creating, remembering and storing strong passwords.
**HBDPG-2** *(Hashing-based Deterministic Password Generator – 2nd Gen)* is an open-source, cross-platform Web-application for deterministic password generation with a focus on security and brute-force attack resistance. The application is designed to solve the problem of creating, remembering and storing strong passwords.

Password generation is performed **on the user's device**. User secrets (passphrases, passwords, other sensitive data) are not transmitted to servers. The generated password is 32 characters long (by default) and contains uppercase letters, lowercase letters, numbers, and symbols. This meets **all modern password standards**.
Password generation is performed **offline on the user's device**. User secrets (passphrases, passwords, other sensitive data) are not transmitted to servers. The generated password is 32 characters long (by default) and contains uppercase letters, lowercase letters, numbers, and symbols. This meets **all modern password standards**.

The generation result is deterministic and depends on user inputs (passphrases). The generated password is **not stored anywhere!** Next time you need this password, enter your passphrases to get it again.

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<meta name="MobileOptimized" content="width">

<title>HBDPG-2: Deterministic password generator</title>
<meta name="description" content="Generate your passwords anywhere, securely, and without storing them!">
<meta name="description" content="HBDPG-2 is an open-source, cross-platform deterministic password generator. Generate your strong passwords anywhere, securely, and without storing them!">
<link rel="canonical" href="https://hbdpg-2.github.io/">

<link rel="manifest" href="manifest.webmanifest">
Expand Down
2 changes: 1 addition & 1 deletion manifest.webmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "HBDPG-2",
"short_name": "HBDPG-2",
"description": "HBDPG-2 is a open-source, cross-platform deterministic password generator. Generate your strong passwords anywhere, securely, and without storing them!",
"description": "HBDPG-2 is an open-source, cross-platform deterministic password generator with brute-force attack resistance. Generate your strong passwords anywhere, securely, and without storing them!",
"id": "https://hbdpg-2.github.io/",
"start_url": "https://hbdpg-2.github.io/",
"scope": "https://hbdpg-2.github.io/",
Expand Down
2 changes: 1 addition & 1 deletion serviceworker.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Licensed under the MIT License. See LICENSE file in the project root for details.
*/

const CACHE_VERSION = 'v20241217-1';
const CACHE_VERSION = 'v20241218-0';
// const CACHE_VERSION = 'v1-debug';

const ASSETS = [
Expand Down

0 comments on commit e60579f

Please sign in to comment.