Devlog - 2025-12-12
π What I Did
- Codewars.
- Random Password generator(using random function, maps, and crypto)
π§ What I Learned
Uint32Array= array of big random numbers (0 to 4.29 billion).Uint8Arraygives only 0β255 (less randomness).Uint16Arraygives 0β65,535.
Cryptographically random values
- Comes from OS-level secure random generator(Linux /dev/urandom, Windows Cryptographic Provider, macOS SecureRandom)
- non-predictable.
- high entropy.
- designed specifically for passwords, keys, salts, tokens.
- It follows NIST SP 800-90 standards used in cryptography.
crypto.getRandomValues(arr);
π₯ Whatβs Next
- FCC.
- Codewars.
- Theory(Dom).