Lean Password Hasher

Nifty helper to hash passwords. Uses HMAC-SHA1.

Lean Password Hasher là gì?

Lean Password Hasher là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Nifty helper to hash passwords. Uses HMAC-SHA1.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lean Password Hasher

Tải xuống các tệp mở rộng Lean Password Hasher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lean Password Hasher Lean Password Hasher
ID epkjbahnaccnpbhapgfnggcefflmdjid
URL Chính Thức https://chromewebstore.google.com/detail/lean-password-hasher/epkjbahnaccnpbhapgfnggcefflmdjid
Mô tả Nifty helper to hash passwords. Uses HMAC-SHA1.
Kích Thước Tệp 48.74 KB
Số Lần Cài Đặt 132
Phiên Bản Hiện Tại 0.2
Cập Nhật Lần Cuối 2013-01-16
Ngày Phát Hành 2013-01-16
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng http://hash.tknetwork.de
URL Trang Trợ Giúp http://hashapass.com/
Ngôn Ngữ Được Hỗ Trợ 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"
}