উবুন্টু 10.04 এর জন্য কীভাবে একটি / ইত্যাদি / ছায়া সামঞ্জস্যপূর্ণ পাসওয়ার্ড তৈরি করবেন?


10

উবুন্টু 10.04 দ্বারা ব্যবহৃত পাসওয়ার্ডগুলি কীভাবে তৈরি হয়? আমি জানি যে তারা SHA 512 কে হ্যাশিং অ্যালগরিদম হিসাবে ব্যবহার করে তবে আমি বুঝতে পারি যে সেখানে কিছুটা সল্টিং হয়েছে। আমাকে নিজের মতো একটি পাসওয়ার্ড তৈরি করতে হবে। আমি এটা কিভাবে করবো? এটির জন্য একটি কমান্ড লাইন সরঞ্জাম আছে?

উত্তর:


14

দ্রুত অজগর / পার্ল / যে কোনও স্ক্রিপ্ট হ্যাক করা এবং ক্রিপ্ট (3) ফাংশনটি কল করা তুচ্ছ হওয়া উচিত ।

The glibc2 version of this function supports additional encryption algorithms.

If salt is a character string starting with the characters "$id$" followed by
a string terminated by "$":

      $id$salt$encrypted

then instead of using the DES machine, id identifies the encryption method
used and this then determines how the rest of the password string is
interpreted.  The following values of id are supported:

      ID  | Method
      ---------------------------------------------------------
      1   | MD5
      2a  | Blowfish (not in mainline glibc; added in some
          | Linux distributions)
      5   | SHA-256 (since glibc 2.7)
      6   | SHA-512 (since glibc 2.7)

So $5$salt$encrypted is an SHA-256 encoded password and $6$salt$encrypted is
an SHA-512 encoded one.

"salt" stands for the up to 16 characters following "$id$" in the salt.  The
encrypted part of the password string is the actual computed password.  The
size of this string is fixed:

MD5     | 22 characters
SHA-256 | 43 characters
SHA-512 | 86 characters

The characters in "salt" and "encrypted" are drawn from the set [a-zA-Z0-9./].
In the MD5 and SHA implementations the entire key is significant (instead of
only the first 8 bytes in DES).

আপনি সিস্টেমগুলিতে ছায়া ফাইলটিতে এমডি 5 পাসওয়ার্ড ব্যবহার করতে পারেন যা ডিফল্টভাবে শে -512 বা অন্য কোনও কিছুতে ব্যবহার করতে পারেন। সরঞ্জাম মেকপাসউড-এর মতো কমান্ডটি এমডি 5 হ্যাশ তৈরি করতে ব্যবহার করা যেতে পারে।

আপনি mkpasswd ব্যবহার করতে পারেন যা আশ্চর্যজনকভাবে দেবিয়ান / উবুন্টুতে হুইস প্যাকেজের অংশ। mkpasswd -m sha-512। ( এখানে পাওয়া গেছে )

আমাদের সাইট ব্যবহার করে, আপনি স্বীকার করেছেন যে আপনি আমাদের কুকি নীতি এবং গোপনীয়তা নীতিটি পড়েছেন এবং বুঝতে পেরেছেন ।
Licensed under cc by-sa 3.0 with attribution required.