Lean Password Hasher

Nifty helper to hash passwords. Uses HMAC-SHA1.

Lean Password Hasher란 무엇입니까?

Lean Password Hasher은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Nifty helper to hash passwords. Uses HMAC-SHA1."입니다.

확장 프로그램 스크린샷

screenshot

Lean Password Hasher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 URL 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"
}