jquery-hash

1.0.0 • Public • Published

jquery-hash

jQuery plugin to return a hash for a string using SHA 1/256/384/512 and the web crypto api

demo: https://angeal185.github.io/jquery-hash

Installation

npm

$ npm install jquery-hash --save

browser

<script src="./path-to/jquery.min.js"></script>
<script src="./dist/jq-hash.min.js"></script>

info

// demo
 
/**
* $.hash(str, digest, enc, cb)
@param {string} str ~ string to be hashed
@param {string} digest ~ 1/256/384/512
@param {string} enc ~ hex/base64/Uint8
@param {function} cb ~ callback
*/
 
$.hash('hello world!', '512', 'hex',function(i){
 console.log(i)
});
 

Package Sidebar

Install

npm i jquery-hash

Weekly Downloads

44

Version

1.0.0

License

MIT

Unpacked Size

6.88 kB

Total Files

7

Last publish

Collaborators

  • angeal185