FAQ
Is RandKit free to use?
Yes, RandKit is completely free. No accounts, no subscriptions, no limits on generation.
Are generated values sent to a server?
No. All generation happens in your browser using the Web Crypto API. No network requests are made during generation. You can verify this by checking the Network tab in your browser's DevTools.
Are generated passwords stored anywhere?
No. Generated values are never stored in localStorage, sessionStorage, cookies, or any other client-side storage. Once you navigate away, the values are gone.
What randomness source does RandKit use?
RandKit uses the Web Crypto API (
crypto.getRandomValues() and crypto.randomUUID()) which provides cryptographically secure random values from the operating system's entropy sources. Math.random() is never used for security-sensitive generation.Does RandKit work without JavaScript?
Content pages (guides, about, privacy, etc.) work without JavaScript. The generation tools require JavaScript to function, as all generation happens client-side.
Does RandKit use external CDN or third-party scripts?
No. All resources are served from the same origin. No external fonts, no CDN, no analytics, no third-party scripts of any kind.