Lean Password Hasher

Nifty helper to hash passwords. Uses HMAC-SHA1.

ما هو Lean Password Hasher؟

Lean Password Hasher هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "Nifty helper to hash passwords. Uses HMAC-SHA1.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Lean Password Hasher

قم بتنزيل ملفات الامتداد Lean Password Hasher بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Lean Password Hasher lets you create safe and purpose-specific passwords easily. You just have to remember a reasonably long master key.

This extension opens a small pop-up, tries to determine the parameter from the domain of the current tab, asks for the master password and copies the hash to the clipboard. Lean Password Hasher generates a Base64 encoded HMAC-SHA1 hash with the master key as HMAC and the parameter as message, shortened to the chosen length. It was inspired by hashapass.com and generates the same hash with the default length of 8.

An online version of this extension can be found at hash.tknetwork.de.

SHA1 implementation by Paul Johnston (http://pajhome.org.uk/crypt/md5)
BSD License

Icon by Iconfinder (http://www.iconfinder.net)
Creative Commons Attribution-No Derivative Works 3.0                    

معلومات أساسية عن التمديد

الاسم Lean Password Hasher Lean Password Hasher
ID epkjbahnaccnpbhapgfnggcefflmdjid
عنوان URL الرسمي https://chromewebstore.google.com/detail/lean-password-hasher/epkjbahnaccnpbhapgfnggcefflmdjid
الوصف Nifty helper to hash passwords. Uses HMAC-SHA1.
حجم الملف 48.74 KB
عدد التثبيتات 132
النسخة الحالية 0.2
آخر تحديث 2013-01-16
تاريخ النشر 2013-01-16
تقييم 5.00/5 مجموع تقييمات 4
المطور Unknown
نوع الدفع free
موقع الإضافة http://hash.tknetwork.de
عنوان صفحة المساعدة http://hashapass.com/
اللغات المدعومة en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Lean Password Hasher",
    "description": "Nifty helper to hash passwords. Uses HMAC-SHA1.",
    "version": "0.2",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "index.html"
    },
    "options_page": "options.html"
}