Skip to content

Commit 60462c3

Browse files
committed
fix: reword awkward sentence on password guessing
1 parent bf0ef61 commit 60462c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ <h3 class="text-lg font-semibold text-green-900 mb-4">Why the Secret Key Matters
179179
</div>
180180
</div>
181181
<div id="transition2" class="hidden text-center py-4">
182-
<p class="text-gray-600 text-sm"> Your password and Secret Key are combined through <a href="https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/deriveKey#pbkdf2" class="text-blue-600 hover:text-blue-800">PBKDF2 (Password-Based Key Derivation Function)</a> with <strong>650,000 iterations</strong> to derive the Account Unlock Key (AUK). This intentionally slow process <strong>makes brute-force attacks computationally expensive</strong>: an attacker obtaining your encrypted data would need to perform 650,000 cryptographic operations for every password guess, turning a millisecond attack into hours or days of computation per attempt.</p>
182+
<p class="text-gray-600 text-sm">Your password and Secret Key are combined through <a href="https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/deriveKey#pbkdf2" class="text-blue-600 hover:text-blue-800">PBKDF2 (Password-Based Key Derivation Function)</a> with <strong>650,000 iterations</strong> to derive the Account Unlock Key (AUK). This intentionally slow process <strong>makes brute-force attacks computationally expensive</strong>: an attacker must perform <strong>650,000 operations</strong> per password guess, drastically <strong>limiting the number of attempts</strong> they can make.</p>
183183
</div>
184184
<div id="keyDerivationSection" class="bg-white rounded-lg shadow-lg p-8 hidden">
185185
<h2 class="text-2xl font-semibold text-gray-900 mb-6">Step 2: Derive the Account Unlock Key</h2>

0 commit comments

Comments
 (0)