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.”。
扩展截图
下载Lean Password Hasher扩展crx文件
下载Lean Password Hasher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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" } |