New accounts on consumer services
16-character mixed-case + digits + symbols, stored in a password manager. That's ~95 bits of entropy — comfortable margin against any current cracking attack.
আপনার ব্রাউজারেই ক্রিপ্টোগ্রাফিকভাবে নিরাপদ পাসওয়ার্ড তৈরি করুন। দৈর্ঘ্য, অক্ষরের ধরন ও পঠনযোগ্যতা কাস্টমাইজ করুন। কিছুই সার্ভারে পাঠানো হয় না।
হ্যাঁ। আমরা crypto.getRandomValues ব্যবহার করি — Web Crypto API-এর ক্রিপ্টোগ্রাফিকভাবে নিরাপদ ছদ্ম-এলোমেলো সংখ্যা জেনারেটর (CSPRNG)। এটি পাসওয়ার্ড, token ও ক্রিপ্টোগ্রাফিক কী-এর জন্য উপযুক্ত।
না। পাসওয়ার্ড তৈরি সম্পূর্ণভাবে আপনার ব্রাউজারে JavaScript-এর মাধ্যমে হয়। পাসওয়ার্ড তৈরি করার সময় কোনো নেটওয়ার্ক অনুরোধ পাঠানো হয় না। আপনি ব্রাউজারের Network tab খুলে এটি যাচাই করতে পারেন।
টিপ: পুনরায় তৈরি করতে Space বা R চাপুন।
ক্রিপ্টোগ্রাফিকভাবে নিরাপদ, কাস্টমাইজযোগ্য এবং সম্পূর্ণ ক্লায়েন্ট-সাইড।
ব্রাউজারের crypto.getRandomValues ব্যবহার করে — যে একই API ব্যাঙ্ক ও পাসওয়ার্ড ম্যানেজার ব্যবহার করে। ছদ্ম-এলোমেলো Math.random নয়।
দৈর্ঘ্য ৪–৬৪, চারটি অক্ষর শ্রেণি (বড়, ছোট, সংখ্যা, চিহ্ন) এবং তিনটি মোড: সব অক্ষর, পড়তে সহজ, উচ্চারণযোগ্য।
পাসওয়ার্ড সম্পূর্ণভাবে আপনার ব্রাউজারে তৈরি হয়। কোনো সার্ভারে কিছুই পাঠানো হয় না। কোনো লগ নেই, কোনো টেলিমেট্রি নেই।
স্বয়ংক্রিয় ব্রাউজার শনাক্তকরণ সহ ৩১টি ভাষায় উপলব্ধ। আরবি, ফার্সি ও উর্দুর জন্য RTL সমর্থন।
একটি টিম বা নতুন API কী-এর জন্য পাসওয়ার্ড দরকার? একবারে ১০টি পর্যন্ত তৈরি করুন, সব কপি করুন বা.txt ফাইল হিসেবে ডাউনলোড করুন।
রিয়েল-টাইম এন্ট্রপি-ভিত্তিক শক্তি অনুমান। কপি করার আগে আপনার পাসওয়ার্ডের শক্তি পরিষ্কারভাবে দেখুন।
Cryptographic-grade randomness from your browser's hardware RNG.
Pick the password length (we recommend 16+ for new accounts, 24+ for high-value services) and which character classes to include: lowercase, uppercase, digits, symbols. You can also enable an easy-to-read mode that excludes ambiguous characters like 0/O and 1/l/I, or a pronounceable mode for passphrases you can speak.
We call crypto.getRandomValues, the browser's built-in cryptographically-secure random number generator. On modern hardware this draws from the CPU's hardware entropy source (RDRAND on x86, ARM TRNG on Apple Silicon). The output is the same quality as /dev/urandom on Linux.
Random bytes are mapped to the chosen character set using rejection sampling — this avoids the modulo bias that naïve byte % alphabet.length would introduce. You get a uniform distribution across every character, every position.
We compute the entropy (in bits) of the result and show it next to the password. Click to copy; the password lands on your clipboard via navigator.clipboard.writeText and is never sent anywhere over the network.
Different security situations call for different password strategies.
16-character mixed-case + digits + symbols, stored in a password manager. That's ~95 bits of entropy — comfortable margin against any current cracking attack.
32-character alphanumeric, copied straight into your .env file. The pattern most APIs accept; long enough that brute force is irrelevant.
Pronounceable mode produces things like karto-zelin-bauma — easy for a guest to type from a printed card, still 70+ bits of entropy.
Use the passphrase mode (4-6 random words) for things you have to type by hand without a manager — it's both stronger and easier to remember than a 12-character mixed-case password.
If a password generator's randomness comes from a server (or worse, is logged on its way back), every credential you produce is potentially compromised the moment it's created. iKit generates passwords using only your browser's hardware RNG — the bytes are never transmitted, never logged, never cached.
crypto.getRandomValues is hardware-backed and not deterministic.
iKit ব্লগ থেকে গভীর টিউটোরিয়াল এবং টুল তুলনা।
হ্যাঁ। আমরা crypto.getRandomValues ব্যবহার করি — Web Crypto API-এর ক্রিপ্টোগ্রাফিকভাবে নিরাপদ ছদ্ম-এলোমেলো সংখ্যা জেনারেটর (CSPRNG)। এটি পাসওয়ার্ড, token ও ক্রিপ্টোগ্রাফিক কী-এর জন্য উপযুক্ত।
না। পাসওয়ার্ড তৈরি সম্পূর্ণভাবে আপনার ব্রাউজারে JavaScript-এর মাধ্যমে হয়। পাসওয়ার্ড তৈরি করার সময় কোনো নেটওয়ার্ক অনুরোধ পাঠানো হয় না। আপনি ব্রাউজারের Network tab খুলে এটি যাচাই করতে পারেন।
মিটার এন্ট্রপি (এলোমেলোতার বিট) অনুমান করে: দুর্বল <২৮ বিট, মাঝারি ২৮–৪০, ভালো ৪০–৬০, শক্তিশালী ৬০–৮০, অত্যন্ত শক্তিশালী ৮০+। সব ধরনের সহ ১৬ অক্ষরের পাসওয়ার্ড প্রায় ১০৪ বিট — অত্যন্ত শক্তিশালী।
শুধুমাত্র যখন আপনাকে পাসওয়ার্ড বলতে বা মনে রাখতে হবে। উচ্চারণযোগ্য পাসওয়ার্ড মনে রাখার বিনিময়ে এন্ট্রপি হারায় — নিরাপদ থাকতে দীর্ঘ (২০+) দৈর্ঘ্য ব্যবহার করুন। বেশিরভাগ ক্ষেত্রে আপনি পাসওয়ার্ড ম্যানেজারে সংরক্ষণ করবেন, তাই এলোমেলো ভালো।
চারটি ধরন সহ ১৬ অক্ষর একটি শক্তিশালী ডিফল্ট। উচ্চ-মূল্য অ্যাকাউন্টের জন্য (ইমেইল, ব্যাঙ্কিং, ক্রিপ্টো) ২০+ ব্যবহার করুন। কিছু সিস্টেম ১৬ বা ২০-এ সীমাবদ্ধ — সর্বদা সাইটের প্রয়োজনীয়তা পরীক্ষা করুন।