What Makes a Password Strong?
2025-04-03
Heading 1 – Main Title
Heading 2 – Section Title
Heading 3 – Subsection
Bold, italic, ~~strikethrough~~
This is a blockquote. You can use this to highlight tips or quotes.
Lists
Unordered List
- Privacy-focused apps
- No trackers
- No ads
Ordered List
- Choose a password length
- Include symbols and numbers
- Click “Generate”
Links
Inline Code
Use getRandomChars()
to generate characters.
Code Block (JS)
function getPassword(length) {
return Array.from(crypto.getRandomValues(new Uint8Array(length)))
.map(n => n % 36)
.map(n => n.toString(36))
.join('');}