mirror of
https://github.com/emn178/js-sha256.git
synced 2026-08-12 20:32:16 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f73267ad15 | ||
|
|
18457729c8 | ||
|
|
90136f7a05 | ||
|
|
009d7b6070 | ||
|
|
8754ac17ef | ||
|
|
c016df9256 | ||
|
|
f0ba196020 | ||
|
|
5df847f0e0 | ||
|
|
a564472309 | ||
|
|
64149617be |
@@ -0,0 +1,2 @@
|
|||||||
|
node_modules/
|
||||||
|
covreporter
|
||||||
+5
-4
@@ -3,10 +3,11 @@ node_js:
|
|||||||
- "0.11"
|
- "0.11"
|
||||||
- "0.10"
|
- "0.10"
|
||||||
- "0.8"
|
- "0.8"
|
||||||
install:
|
before_install:
|
||||||
- npm install mocha -g
|
- npm install mocha -g
|
||||||
- npm install coveralls -g
|
- npm install coveralls -g
|
||||||
- npm install mocha-lcov-reporter -g
|
- npm install mocha-lcov-reporter -g
|
||||||
- npm install
|
script: npm run-script coveralls
|
||||||
script:
|
branches:
|
||||||
- npm run-script coveralls
|
only:
|
||||||
|
- master
|
||||||
|
|||||||
+30
-3
@@ -1,4 +1,31 @@
|
|||||||
# v0.1.3 / 2015-01-06
|
# v0.2.3 / 2015-02-11
|
||||||
|
|
||||||
|
* Support byte array input.
|
||||||
|
|
||||||
|
# v0.2.2 / 2015-02-10
|
||||||
|
|
||||||
|
* Improve performance.
|
||||||
|
|
||||||
|
# v0.2.1 / 2015-02-05
|
||||||
|
|
||||||
|
* Fixed special length bug.
|
||||||
|
* Add test cases.
|
||||||
|
|
||||||
|
# v0.2.0 / 2015-02-03
|
||||||
|
|
||||||
|
* Remove ascii parameter.
|
||||||
|
* Improve performance.
|
||||||
|
* Add test cases.
|
||||||
|
|
||||||
|
# v0.1.4 / 2015-01-24
|
||||||
|
|
||||||
|
* Improve performance.
|
||||||
|
|
||||||
|
# v0.1.3 / 2015-01-09
|
||||||
|
|
||||||
|
* Improve performance.
|
||||||
|
|
||||||
|
# v0.1.2 / 2015-01-06
|
||||||
|
|
||||||
* Add bower package.
|
* Add bower package.
|
||||||
* Fixed JSHint warnings.
|
* Fixed JSHint warnings.
|
||||||
@@ -7,8 +34,8 @@
|
|||||||
|
|
||||||
# v0.1.1 / 2014-07-27
|
# v0.1.1 / 2014-07-27
|
||||||
|
|
||||||
Fixed accents bug
|
* Fixed accents bug
|
||||||
|
|
||||||
# v0.1.0 / 2014-01-05
|
# v0.1.0 / 2014-01-05
|
||||||
|
|
||||||
Initial release
|
* Initial release
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# js-sha256
|
# js-sha256
|
||||||
[](https://travis-ci.org/emn178/js-sha256)
|
[](https://travis-ci.org/emn178/js-sha256)
|
||||||
[](https://coveralls.io/r/emn178/js-sha256?branch=master)
|
[](https://coveralls.io/r/emn178/js-sha256?branch=master)
|
||||||
[](https://nodei.co/npm/js-sha256/)
|
[](https://nodei.co/npm/js-sha256/)
|
||||||
A simple SHA-256 / SHA-224 hash function for JavaScript supports UTF-8 encoding.
|
A simple SHA-256 / SHA-224 hash function for JavaScript supports UTF-8 encoding.
|
||||||
|
|
||||||
@@ -37,41 +37,15 @@ sha256 = require('js-sha256').sha256;
|
|||||||
sha224 = require('js-sha256').sha224;
|
sha224 = require('js-sha256').sha224;
|
||||||
```
|
```
|
||||||
|
|
||||||
### Methods
|
|
||||||
|
|
||||||
#### sha256(str, asciiOnly)
|
|
||||||
|
|
||||||
Hash string to sha256, set asciiOnly to true for better performace if you ensure input is ascii.
|
|
||||||
|
|
||||||
##### *str: `String`*
|
|
||||||
|
|
||||||
String to hash.
|
|
||||||
|
|
||||||
##### *asciiOnly: `Boolean` (default: `false`)*
|
|
||||||
|
|
||||||
Specify the string encoding is ASCII.
|
|
||||||
|
|
||||||
#### sha224(str, asciiOnly)
|
|
||||||
|
|
||||||
Hash string to sha224, set asciiOnly to true for better performace if you ensure input is ascii.
|
|
||||||
|
|
||||||
##### *str: `String`*
|
|
||||||
|
|
||||||
String to hash.
|
|
||||||
|
|
||||||
##### *asciiOnly: `Boolean` (default: `false`)*
|
|
||||||
|
|
||||||
Specify the string encoding is ASCII.
|
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
Code
|
Code
|
||||||
```JavaScript
|
```JavaScript
|
||||||
sha256('');
|
sha256('');
|
||||||
sha256('The quick brown fox jumps over the lazy dog', true);
|
sha256('The quick brown fox jumps over the lazy dog');
|
||||||
sha256('The quick brown fox jumps over the lazy dog.', true);
|
sha256('The quick brown fox jumps over the lazy dog.');
|
||||||
sha224('');
|
sha224('');
|
||||||
sha224('The quick brown fox jumps over the lazy dog', true);
|
sha224('The quick brown fox jumps over the lazy dog');
|
||||||
sha224('The quick brown fox jumps over the lazy dog.', true);
|
sha224('The quick brown fox jumps over the lazy dog.');
|
||||||
```
|
```
|
||||||
Output
|
Output
|
||||||
|
|
||||||
@@ -94,6 +68,22 @@ Output
|
|||||||
72726d8818f693066ceb69afa364218b692e62ea92b385782363780f47529c21
|
72726d8818f693066ceb69afa364218b692e62ea92b385782363780f47529c21
|
||||||
dfbab71afdf54388af4d55f8bd3de8c9b15e0eb916bf9125f4a959d4
|
dfbab71afdf54388af4d55f8bd3de8c9b15e0eb916bf9125f4a959d4
|
||||||
|
|
||||||
|
It also supports byte Array or Uint8Array input:
|
||||||
|
|
||||||
|
Code
|
||||||
|
```JavaScript
|
||||||
|
sha256([]);
|
||||||
|
sha256(new Uint8Array([211, 212]));
|
||||||
|
```
|
||||||
|
Output
|
||||||
|
|
||||||
|
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
|
||||||
|
182889f925ae4e5cc37118ded6ed87f7bdc7cab5ec5e78faef2e50048999473f
|
||||||
|
|
||||||
|
## Benchmark
|
||||||
|
[UTF8](http://jsperf.com/sha256/66)
|
||||||
|
[ASCII](http://jsperf.com/sha256/65)
|
||||||
|
|
||||||
## Extensions
|
## Extensions
|
||||||
### jQuery
|
### jQuery
|
||||||
If you prefer jQuery style, you can add following code to add a jQuery extension.
|
If you prefer jQuery style, you can add following code to add a jQuery extension.
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "js-sha256",
|
"name": "js-sha256",
|
||||||
"version": "0.1.2",
|
"version": "0.2.3",
|
||||||
"main": ["build/sha256.min.js"],
|
"main": ["build/sha256.min.js"],
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"samples",
|
"samples",
|
||||||
|
|||||||
Vendored
+8
-5
@@ -1,5 +1,8 @@
|
|||||||
(function(x,H){var y="0123456789abcdef".split(""),I=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,
|
(function(C,P){var J="undefined"!=typeof module;J&&(C=global);var H="undefined"!=typeof Uint8Array,a="0123456789abcdef".split(""),O=[-2147483648,8388608,32768,128],D=[24,16,8,0],K=[1116352408,1899447441,3049323471,3921009573,961987163,1508970993,2453635748,2870763221,3624381080,310598401,607225278,1426881987,1925078388,2162078206,2614888103,3248222580,3835390401,4022224774,264347078,604807628,770255983,1249150122,1555081692,1996064986,2554220882,2821834349,2952996808,3210313671,3336571891,3584528711,
|
||||||
3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],k=function(b,g){return F(b,!0,g)},G=function(b,g){return F(b,!1,g)},F=function(b,g,c){g===H&&(g=!0);var e,d,a,r,t,u,v;if(!c&&/[^\x00-\x7F]/.test(b)){c=[];for(d=e=0;d<b.length;d++)a=b.charCodeAt(d),128>a?c[e++]=a:(2048>a?c[e++]=192|a>>6:(55296>a||57344<=a?c[e++]=224|
|
113926993,338241895,666307205,773529912,1294757372,1396182291,1695183700,1986661051,2177026350,2456956037,2730485921,2820302411,3259730800,3345764771,3516065817,3600352804,4094571909,275423344,430227734,506948616,659060556,883997877,958139571,1322822218,1537002063,1747873779,1955562222,2024104815,2227730452,2361852424,2428436474,2756734187,3204031479,3329325298],c=[];Array.prototype.__ARRAY__=!0;H&&(Uint8Array.prototype.__ARRAY__=!0);var H=function(a){return A(a,!0)},A=function(A,C){var f,n,p,q,r,
|
||||||
a>>12:(a=65536+((a&1023)<<10|b.charCodeAt(++d)&1023),c[e++]=240|a>>18,c[e++]=128|a>>12&63),c[e++]=128|a>>6&63),c[e++]=128|a&63);b=c.length;e=(b+8>>6)+1<<4;d=[];for(a=0;a<e;++a)d[a]=0;for(a=0;a<b;++a)d[a>>2]|=c[a]<<(3-(a&3)<<3);d[a>>2]|=128<<(3-(a&3)<<3);d[e-1]=b<<3}else{c=b.length;e=(c+8>>6)+1<<4;d=[];for(a=0;a<e;++a)d[a]=0;for(a=0;a<c;++a)d[a>>2]|=b.charCodeAt(a)<<(3-(a&3)<<3);d[a>>2]|=128<<(3-(a&3)<<3);d[e-1]=c<<3}c=d;g?(e=1779033703,d=3144134277,a=1013904242,r=2773480762,t=1359893119,u=2600822924,
|
t,u,v,g,H=!0,J=!1,b,B=0,L=0,N=0,M=A.length,e,d,E,F,G,I;C?(f=3238371032,n=914150663,p=812702999,q=4144912697,r=4290775857,t=1750603025,u=1694076839,v=3204075428):(f=1779033703,n=3144134277,p=1013904242,q=2773480762,r=1359893119,t=2600822924,u=528734635,v=1541459225);g=0;do{c[0]=g;c[16]=c[1]=c[2]=c[3]=c[4]=c[5]=c[6]=c[7]=c[8]=c[9]=c[10]=c[11]=c[12]=c[13]=c[14]=c[15]=0;if(A.__ARRAY__)for(b=L;B<M&&64>b;++B)c[b>>2]|=A[B]<<D[b++&3];else for(b=L;B<M&&64>b;++B)g=A.charCodeAt(B),128>g?c[b>>2]|=g<<D[b++&3]:
|
||||||
v=528734635,b=1541459225):(e=3238371032,d=914150663,a=812702999,r=4144912697,t=4290775857,u=1750603025,v=1694076839,b=3204075428);for(var k=0,x=c.length;k<x;k+=16){var h=[],w,m,f;for(f=0;16>f;++f)h[f]=c[k+f];for(f=16;64>f;++f)w=l(h[f-15],7)^l(h[f-15],18)^h[f-15]>>>3,m=l(h[f-2],17)^l(h[f-2],19)^h[f-2]>>>10,h[f]=h[f-16]+w+h[f-7]+m;var n=e,z=d,A=a,D=r,p=t,B=u,C=v,E=b,y;for(f=0;64>f;++f)w=l(n,2)^l(n,13)^l(n,22),m=n&z^n&A^z&A,w+=m,m=l(p,6)^l(p,11)^l(p,25),y=p&B^~p&C,m=E+m+y+I[f]+h[f]&4294967295,E=C,C=
|
(2048>g?c[b>>2]|=(192|g>>6)<<D[b++&3]:(55296>g||57344<=g?c[b>>2]|=(224|g>>12)<<D[b++&3]:(g=65536+((g&1023)<<10|A.charCodeAt(++B)&1023),c[b>>2]|=(240|g>>18)<<D[b++&3],c[b>>2]|=(128|g>>12&63)<<D[b++&3]),c[b>>2]|=(128|g>>6&63)<<D[b++&3]),c[b>>2]|=(128|g&63)<<D[b++&3]);N+=b-L;L=b-64;B==M&&(c[b>>2]|=O[b&3],++B);g=c[16];B>M&&56>b&&(c[15]=N<<3,J=!0);var w=f,l=n,m=p,h=q,x=r,y=t,z=u,k=v;for(b=16;64>b;++b)d=c[b-15],e=(d>>>7|d<<25)^(d>>>18|d<<14)^d>>>3,d=c[b-2],d=(d>>>17|d<<15)^(d>>>19|d<<13)^d>>>10,c[b]=c[b-
|
||||||
B,B=p,p=D+m,D=A,A=z,z=n,n=m+w;e+=n;d+=z;a+=A;r+=D;t+=p;u+=B;v+=C;b+=E}c=q(e)+q(d)+q(a)+q(r)+q(t)+q(u)+q(v);g&&(c+=q(b));return c},l=function(b,g){return b>>>g|b<<32-g},q=function(b){for(var g="",c=0;4>c;c++)var e=3-c<<3,g=g+(y[b>>e+4&15]+y[b>>e&15]);return g};"undefined"!=typeof module?(k.sha256=k,k.sha224=G,module.exports=k):x&&(x.sha256=k,x.sha224=G)})(this);
|
16]+e+c[b-7]+d<<0;I=l&m;for(b=0;64>b;b+=4)H?(C?(G=300032,d=c[0]-1413257819,k=d-150054599<<0,h=d+24177077<<0):(G=704751109,d=c[0]-210244248,k=d-1521486534<<0,h=d+143694565<<0),H=!1):(e=(w>>>2|w<<30)^(w>>>13|w<<19)^(w>>>22|w<<10),d=(x>>>6|x<<26)^(x>>>11|x<<21)^(x>>>25|x<<7),G=w&l,E=G^w&m^I,F=x&y^~x&z,d=k+d+F+K[b]+c[b],e+=E,k=h+d<<0,h=d+e<<0),e=(h>>>2|h<<30)^(h>>>13|h<<19)^(h>>>22|h<<10),d=(k>>>6|k<<26)^(k>>>11|k<<21)^(k>>>25|k<<7),I=h&w,E=I^h&l^G,F=k&x^~k&y,d=z+d+F+K[b+1]+c[b+1],e+=E,z=m+d<<0,m=d+e<<
|
||||||
|
0,e=(m>>>2|m<<30)^(m>>>13|m<<19)^(m>>>22|m<<10),d=(z>>>6|z<<26)^(z>>>11|z<<21)^(z>>>25|z<<7),G=m&h,E=G^m&w^I,F=z&k^~z&x,d=y+d+F+K[b+2]+c[b+2],e+=E,y=l+d<<0,l=d+e<<0,e=(l>>>2|l<<30)^(l>>>13|l<<19)^(l>>>22|l<<10),d=(y>>>6|y<<26)^(y>>>11|y<<21)^(y>>>25|y<<7),I=l&m,E=I^l&h^G,F=y&z^~y&k,d=x+d+F+K[b+3]+c[b+3],e+=E,x=w+d<<0,w=d+e<<0;f=f+w<<0;n=n+l<<0;p=p+m<<0;q=q+h<<0;r=r+x<<0;t=t+y<<0;u=u+z<<0;v=v+k<<0}while(!J);f=a[f>>28&15]+a[f>>24&15]+a[f>>20&15]+a[f>>16&15]+a[f>>12&15]+a[f>>8&15]+a[f>>4&15]+a[f&15]+
|
||||||
|
a[n>>28&15]+a[n>>24&15]+a[n>>20&15]+a[n>>16&15]+a[n>>12&15]+a[n>>8&15]+a[n>>4&15]+a[n&15]+a[p>>28&15]+a[p>>24&15]+a[p>>20&15]+a[p>>16&15]+a[p>>12&15]+a[p>>8&15]+a[p>>4&15]+a[p&15]+a[q>>28&15]+a[q>>24&15]+a[q>>20&15]+a[q>>16&15]+a[q>>12&15]+a[q>>8&15]+a[q>>4&15]+a[q&15]+a[r>>28&15]+a[r>>24&15]+a[r>>20&15]+a[r>>16&15]+a[r>>12&15]+a[r>>8&15]+a[r>>4&15]+a[r&15]+a[t>>28&15]+a[t>>24&15]+a[t>>20&15]+a[t>>16&15]+a[t>>12&15]+a[t>>8&15]+a[t>>4&15]+a[t&15]+a[u>>28&15]+a[u>>24&15]+a[u>>20&15]+a[u>>16&15]+a[u>>
|
||||||
|
12&15]+a[u>>8&15]+a[u>>4&15]+a[u&15];C||(f+=a[v>>28&15]+a[v>>24&15]+a[v>>20&15]+a[v>>16&15]+a[v>>12&15]+a[v>>8&15]+a[v>>4&15]+a[v&15]);return f};!C.JS_SHA256_TEST&&J?(A.sha256=A,A.sha224=H,module.exports=A):C&&(C.sha256=A,C.sha224=H)})(this);
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "js-sha256",
|
"name": "js-sha256",
|
||||||
"version": "0.1.2",
|
"version": "0.2.3",
|
||||||
"description": "A simple SHA-256 / SHA-224 hash function for JavaScript supports UTF-8 encoding.",
|
"description": "A simple SHA-256 / SHA-224 hash function for JavaScript supports UTF-8 encoding.",
|
||||||
"main": "src/sha256.js",
|
"main": "src/sha256.js",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
|||||||
+182
-151
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* js-sha256 v0.1.2
|
* js-sha256 v0.2.3
|
||||||
* https://github.com/emn178/js-sha256
|
* https://github.com/emn178/js-sha256
|
||||||
*
|
*
|
||||||
* Copyright 2014-2015, emn178@gmail.com
|
* Copyright 2014-2015, emn178@gmail.com
|
||||||
@@ -10,8 +10,14 @@
|
|||||||
;(function(root, undefined) {
|
;(function(root, undefined) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
|
var NODE_JS = typeof(module) != 'undefined';
|
||||||
|
if(NODE_JS) {
|
||||||
|
root = global;
|
||||||
|
}
|
||||||
|
var TYPED_ARRAY = typeof(Uint8Array) != 'undefined';
|
||||||
var HEX_CHARS = '0123456789abcdef'.split('');
|
var HEX_CHARS = '0123456789abcdef'.split('');
|
||||||
|
var EXTRA = [-2147483648, 8388608, 32768, 128];
|
||||||
|
var SHIFT = [24, 16, 8, 0];
|
||||||
var K =[0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
|
var K =[0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
|
||||||
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
|
0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3, 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
|
||||||
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
|
0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
|
||||||
@@ -21,35 +27,23 @@
|
|||||||
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
|
0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
|
||||||
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2];
|
0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208, 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2];
|
||||||
|
|
||||||
var sha256 = function(message, asciiOnly) {
|
var blocks = [];
|
||||||
return sha2(message, true, asciiOnly);
|
|
||||||
};
|
|
||||||
|
|
||||||
var sha224 = function(message, asciiOnly) {
|
Array.prototype.__ARRAY__ = true;
|
||||||
return sha2(message, false, asciiOnly);
|
if(TYPED_ARRAY) {
|
||||||
};
|
Uint8Array.prototype.__ARRAY__ = true;
|
||||||
|
|
||||||
var sha2 = function(message, is256, asciiOnly) {
|
|
||||||
if(is256 === undefined) {
|
|
||||||
is256 = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var blocks, h0, h1, h2, h3, h4, h5, h6, h7;
|
var sha224 = function(message) {
|
||||||
if(!asciiOnly && /[^\x00-\x7F]/.test(message)) {
|
return sha256(message, true);
|
||||||
blocks = getBlocksFromUtf8(message);
|
};
|
||||||
} else {
|
|
||||||
blocks = getBlocksFromAscii(message);
|
var sha256 = function(message, is224) {
|
||||||
}
|
var h0, h1, h2, h3, h4, h5, h6, h7, block, code, first = true, end = false,
|
||||||
if(is256) {
|
i, j, index = 0, start = 0, bytes = 0, length = message.length,
|
||||||
h0 = 0x6a09e667;
|
s0, s1, maj, t1, t2, ch, ab, da, cd, bc;
|
||||||
h1 = 0xbb67ae85;
|
|
||||||
h2 = 0x3c6ef372;
|
if(is224) {
|
||||||
h3 = 0xa54ff53a;
|
|
||||||
h4 = 0x510e527f;
|
|
||||||
h5 = 0x9b05688c;
|
|
||||||
h6 = 0x1f83d9ab;
|
|
||||||
h7 = 0x5be0cd19;
|
|
||||||
} else { // 224
|
|
||||||
h0 = 0xc1059ed8;
|
h0 = 0xc1059ed8;
|
||||||
h1 = 0x367cd507;
|
h1 = 0x367cd507;
|
||||||
h2 = 0x3070dd17;
|
h2 = 0x3070dd17;
|
||||||
@@ -58,136 +52,173 @@
|
|||||||
h5 = 0x68581511;
|
h5 = 0x68581511;
|
||||||
h6 = 0x64f98fa7;
|
h6 = 0x64f98fa7;
|
||||||
h7 = 0xbefa4fa4;
|
h7 = 0xbefa4fa4;
|
||||||
|
} else { // 256
|
||||||
|
h0 = 0x6a09e667;
|
||||||
|
h1 = 0xbb67ae85;
|
||||||
|
h2 = 0x3c6ef372;
|
||||||
|
h3 = 0xa54ff53a;
|
||||||
|
h4 = 0x510e527f;
|
||||||
|
h5 = 0x9b05688c;
|
||||||
|
h6 = 0x1f83d9ab;
|
||||||
|
h7 = 0x5be0cd19;
|
||||||
}
|
}
|
||||||
|
block = 0;
|
||||||
for(var i = 0, length = blocks.length;i < length;i += 16) {
|
do {
|
||||||
var w = [], s0, s1, j;
|
blocks[0] = block;
|
||||||
for(j = 0;j < 16;++j) {
|
blocks[16] = blocks[1] = blocks[2] = blocks[3] =
|
||||||
w[j] = blocks[i + j];
|
blocks[4] = blocks[5] = blocks[6] = blocks[7] =
|
||||||
|
blocks[8] = blocks[9] = blocks[10] = blocks[11] =
|
||||||
|
blocks[12] = blocks[13] = blocks[14] = blocks[15] = 0;
|
||||||
|
if(message.__ARRAY__) {
|
||||||
|
for (i = start;index < length && i < 64; ++index) {
|
||||||
|
blocks[i >> 2] |= message[index] << SHIFT[i++ & 3];
|
||||||
}
|
}
|
||||||
for(j = 16;j < 64;++j) {
|
|
||||||
s0 = rightrotate(w[j - 15], 7) ^ rightrotate(w[j - 15], 18) ^ (w[j - 15] >>> 3);
|
|
||||||
s1 = rightrotate(w[j - 2], 17) ^ rightrotate(w[j - 2], 19) ^ (w[j - 2] >>> 10);
|
|
||||||
w[j] = w[j - 16] + s0 + w[j - 7] + s1;
|
|
||||||
}
|
|
||||||
|
|
||||||
var a = h0;
|
|
||||||
var b = h1;
|
|
||||||
var c = h2;
|
|
||||||
var d = h3;
|
|
||||||
var e = h4;
|
|
||||||
var f = h5;
|
|
||||||
var g = h6;
|
|
||||||
var h = h7;
|
|
||||||
var maj, t1, t2, ch;
|
|
||||||
|
|
||||||
for(j = 0;j < 64;++j) {
|
|
||||||
s0 = rightrotate(a, 2) ^ rightrotate(a, 13) ^ rightrotate(a, 22);
|
|
||||||
maj = (a & b) ^ (a & c) ^ (b & c);
|
|
||||||
t2 = s0 + maj;
|
|
||||||
s1 = rightrotate(e, 6) ^ rightrotate(e, 11) ^ rightrotate(e, 25);
|
|
||||||
ch = (e & f) ^ ((~ e) & g);
|
|
||||||
t1 = (h + s1 + ch + K[j] + w[j]) & 0xffffffff;
|
|
||||||
|
|
||||||
h = g;
|
|
||||||
g = f;
|
|
||||||
f = e;
|
|
||||||
e = d + t1;
|
|
||||||
d = c;
|
|
||||||
c = b;
|
|
||||||
b = a;
|
|
||||||
a = t1 + t2;
|
|
||||||
}
|
|
||||||
|
|
||||||
h0 += a;
|
|
||||||
h1 += b;
|
|
||||||
h2 += c;
|
|
||||||
h3 += d;
|
|
||||||
h4 += e;
|
|
||||||
h5 += f;
|
|
||||||
h6 += g;
|
|
||||||
h7 += h;
|
|
||||||
}
|
|
||||||
|
|
||||||
var hex = toHexString(h0) + toHexString(h1)+ toHexString(h2) + toHexString(h3) + toHexString(h4) + toHexString(h5) + toHexString(h6);
|
|
||||||
if(is256) {
|
|
||||||
hex += toHexString(h7);
|
|
||||||
}
|
|
||||||
return hex;
|
|
||||||
};
|
|
||||||
|
|
||||||
var rightrotate = function(x, c) {
|
|
||||||
return (x >>> c) | (x << (32 - c));
|
|
||||||
};
|
|
||||||
|
|
||||||
var toHexString = function(num) {
|
|
||||||
var hex = '';
|
|
||||||
for(var i = 0; i < 4; i++) {
|
|
||||||
var offset = 3 - i << 3;
|
|
||||||
hex += HEX_CHARS[(num >> (offset + 4)) & 0x0F] + HEX_CHARS[(num >> offset) & 0x0F];
|
|
||||||
}
|
|
||||||
return hex;
|
|
||||||
};
|
|
||||||
|
|
||||||
var getBytesFromUtf8 = function(str) {
|
|
||||||
var bytes = [], index = 0;
|
|
||||||
for (var i = 0;i < str.length; i++) {
|
|
||||||
var c = str.charCodeAt(i);
|
|
||||||
if (c < 0x80) {
|
|
||||||
bytes[index++] = c;
|
|
||||||
} else if (c < 0x800) {
|
|
||||||
bytes[index++] = 0xc0 | (c >> 6);
|
|
||||||
bytes[index++] = 0x80 | (c & 0x3f);
|
|
||||||
} else if (c < 0xd800 || c >= 0xe000) {
|
|
||||||
bytes[index++] = 0xe0 | (c >> 12);
|
|
||||||
bytes[index++] = 0x80 | ((c >> 6) & 0x3f);
|
|
||||||
bytes[index++] = 0x80 | (c & 0x3f);
|
|
||||||
} else {
|
} else {
|
||||||
c = 0x10000 + (((c & 0x3ff) << 10) | (str.charCodeAt(++i) & 0x3ff));
|
for (i = start;index < length && i < 64; ++index) {
|
||||||
bytes[index++] = 0xf0 | (c >> 18);
|
code = message.charCodeAt(index);
|
||||||
bytes[index++] = 0x80 | ((c >> 12) & 0x3f);
|
if (code < 0x80) {
|
||||||
bytes[index++] = 0x80 | ((c >> 6) & 0x3f);
|
blocks[i >> 2] |= code << SHIFT[i++ & 3];
|
||||||
bytes[index++] = 0x80 | (c & 0x3f);
|
} else if (code < 0x800) {
|
||||||
|
blocks[i >> 2] |= (0xc0 | (code >> 6)) << SHIFT[i++ & 3];
|
||||||
|
blocks[i >> 2] |= (0x80 | (code & 0x3f)) << SHIFT[i++ & 3];
|
||||||
|
} else if (code < 0xd800 || code >= 0xe000) {
|
||||||
|
blocks[i >> 2] |= (0xe0 | (code >> 12)) << SHIFT[i++ & 3];
|
||||||
|
blocks[i >> 2] |= (0x80 | ((code >> 6) & 0x3f)) << SHIFT[i++ & 3];
|
||||||
|
blocks[i >> 2] |= (0x80 | (code & 0x3f)) << SHIFT[i++ & 3];
|
||||||
|
} else {
|
||||||
|
code = 0x10000 + (((code & 0x3ff) << 10) | (message.charCodeAt(++index) & 0x3ff));
|
||||||
|
blocks[i >> 2] |= (0xf0 | (code >> 18)) << SHIFT[i++ & 3];
|
||||||
|
blocks[i >> 2] |= (0x80 | ((code >> 12) & 0x3f)) << SHIFT[i++ & 3];
|
||||||
|
blocks[i >> 2] |= (0x80 | ((code >> 6) & 0x3f)) << SHIFT[i++ & 3];
|
||||||
|
blocks[i >> 2] |= (0x80 | (code & 0x3f)) << SHIFT[i++ & 3];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return bytes;
|
}
|
||||||
|
bytes += i - start;
|
||||||
|
start = i - 64;
|
||||||
|
if(index == length) {
|
||||||
|
blocks[i >> 2] |= EXTRA[i & 3];
|
||||||
|
++index;
|
||||||
|
}
|
||||||
|
block = blocks[16];
|
||||||
|
if(index > length && i < 56) {
|
||||||
|
blocks[15] = bytes << 3;
|
||||||
|
end = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
var a = h0, b = h1, c = h2, d = h3, e = h4, f = h5, g = h6, h = h7;
|
||||||
|
for(j = 16;j < 64;++j) {
|
||||||
|
// rightrotate
|
||||||
|
t1 = blocks[j - 15];
|
||||||
|
s0 = ((t1 >>> 7) | (t1 << 25)) ^ ((t1 >>> 18) | (t1 << 14)) ^ (t1 >>> 3);
|
||||||
|
t1 = blocks[j - 2];
|
||||||
|
s1 = ((t1 >>> 17) | (t1 << 15)) ^ ((t1 >>> 19) | (t1 << 13)) ^ (t1 >>> 10);
|
||||||
|
blocks[j] = blocks[j - 16] + s0 + blocks[j - 7] + s1 << 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
bc = b & c;
|
||||||
|
for(j = 0;j < 64;j += 4) {
|
||||||
|
if(first) {
|
||||||
|
if(is224) {
|
||||||
|
ab = 300032;
|
||||||
|
t1 = blocks[0] - 1413257819;
|
||||||
|
h = t1 - 150054599 << 0;
|
||||||
|
d = t1 + 24177077 << 0;
|
||||||
|
} else {
|
||||||
|
ab = 704751109;
|
||||||
|
t1 = blocks[0] - 210244248;
|
||||||
|
h = t1 - 1521486534 << 0;
|
||||||
|
d = t1 + 143694565 << 0;
|
||||||
|
}
|
||||||
|
first = false;
|
||||||
|
} else {
|
||||||
|
s0 = ((a >>> 2) | (a << 30)) ^ ((a >>> 13) | (a << 19)) ^ ((a >>> 22) | (a << 10));
|
||||||
|
s1 = ((e >>> 6) | (e << 26)) ^ ((e >>> 11) | (e << 21)) ^ ((e >>> 25) | (e << 7));
|
||||||
|
ab = a & b;
|
||||||
|
maj = ab ^ (a & c) ^ bc;
|
||||||
|
ch = (e & f) ^ (~e & g);
|
||||||
|
t1 = h + s1 + ch + K[j] + blocks[j];
|
||||||
|
t2 = s0 + maj;
|
||||||
|
h = d + t1 << 0;
|
||||||
|
d = t1 + t2 << 0;
|
||||||
|
}
|
||||||
|
s0 = ((d >>> 2) | (d << 30)) ^ ((d >>> 13) | (d << 19)) ^ ((d >>> 22) | (d << 10));
|
||||||
|
s1 = ((h >>> 6) | (h << 26)) ^ ((h >>> 11) | (h << 21)) ^ ((h >>> 25) | (h << 7));
|
||||||
|
da = d & a;
|
||||||
|
maj = da ^ (d & b) ^ ab;
|
||||||
|
ch = (h & e) ^ (~h & f);
|
||||||
|
t1 = g + s1 + ch + K[j + 1] + blocks[j + 1];
|
||||||
|
t2 = s0 + maj;
|
||||||
|
g = c + t1 << 0;
|
||||||
|
c = t1 + t2 << 0;
|
||||||
|
s0 = ((c >>> 2) | (c << 30)) ^ ((c >>> 13) | (c << 19)) ^ ((c >>> 22) | (c << 10));
|
||||||
|
s1 = ((g >>> 6) | (g << 26)) ^ ((g >>> 11) | (g << 21)) ^ ((g >>> 25) | (g << 7));
|
||||||
|
cd = c & d;
|
||||||
|
maj = cd ^ (c & a) ^ da;
|
||||||
|
ch = (g & h) ^ (~g & e);
|
||||||
|
t1 = f + s1 + ch + K[j + 2] + blocks[j + 2];
|
||||||
|
t2 = s0 + maj;
|
||||||
|
f = b + t1 << 0;
|
||||||
|
b = t1 + t2 << 0;
|
||||||
|
s0 = ((b >>> 2) | (b << 30)) ^ ((b >>> 13) | (b << 19)) ^ ((b >>> 22) | (b << 10));
|
||||||
|
s1 = ((f >>> 6) | (f << 26)) ^ ((f >>> 11) | (f << 21)) ^ ((f >>> 25) | (f << 7));
|
||||||
|
bc = b & c;
|
||||||
|
maj = bc ^ (b & d) ^ cd;
|
||||||
|
ch = (f & g) ^ (~f & h);
|
||||||
|
t1 = e + s1 + ch + K[j + 3] + blocks[j + 3];
|
||||||
|
t2 = s0 + maj;
|
||||||
|
e = a + t1 << 0;
|
||||||
|
a = t1 + t2 << 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h0 = h0 + a << 0;
|
||||||
|
h1 = h1 + b << 0;
|
||||||
|
h2 = h2 + c << 0;
|
||||||
|
h3 = h3 + d << 0;
|
||||||
|
h4 = h4 + e << 0;
|
||||||
|
h5 = h5 + f << 0;
|
||||||
|
h6 = h6 + g << 0;
|
||||||
|
h7 = h7 + h << 0;
|
||||||
|
} while(!end);
|
||||||
|
|
||||||
|
var hex = HEX_CHARS[(h0 >> 28) & 0x0F] + HEX_CHARS[(h0 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h0 >> 20) & 0x0F] + HEX_CHARS[(h0 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h0 >> 12) & 0x0F] + HEX_CHARS[(h0 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h0 >> 4) & 0x0F] + HEX_CHARS[h0 & 0x0F] +
|
||||||
|
HEX_CHARS[(h1 >> 28) & 0x0F] + HEX_CHARS[(h1 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h1 >> 20) & 0x0F] + HEX_CHARS[(h1 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h1 >> 12) & 0x0F] + HEX_CHARS[(h1 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h1 >> 4) & 0x0F] + HEX_CHARS[h1 & 0x0F] +
|
||||||
|
HEX_CHARS[(h2 >> 28) & 0x0F] + HEX_CHARS[(h2 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h2 >> 20) & 0x0F] + HEX_CHARS[(h2 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h2 >> 12) & 0x0F] + HEX_CHARS[(h2 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h2 >> 4) & 0x0F] + HEX_CHARS[h2 & 0x0F] +
|
||||||
|
HEX_CHARS[(h3 >> 28) & 0x0F] + HEX_CHARS[(h3 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h3 >> 20) & 0x0F] + HEX_CHARS[(h3 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h3 >> 12) & 0x0F] + HEX_CHARS[(h3 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h3 >> 4) & 0x0F] + HEX_CHARS[h3 & 0x0F] +
|
||||||
|
HEX_CHARS[(h4 >> 28) & 0x0F] + HEX_CHARS[(h4 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h4 >> 20) & 0x0F] + HEX_CHARS[(h4 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h4 >> 12) & 0x0F] + HEX_CHARS[(h4 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h4 >> 4) & 0x0F] + HEX_CHARS[h4 & 0x0F] +
|
||||||
|
HEX_CHARS[(h5 >> 28) & 0x0F] + HEX_CHARS[(h5 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h5 >> 20) & 0x0F] + HEX_CHARS[(h5 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h5 >> 12) & 0x0F] + HEX_CHARS[(h5 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h5 >> 4) & 0x0F] + HEX_CHARS[h5 & 0x0F] +
|
||||||
|
HEX_CHARS[(h6 >> 28) & 0x0F] + HEX_CHARS[(h6 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h6 >> 20) & 0x0F] + HEX_CHARS[(h6 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h6 >> 12) & 0x0F] + HEX_CHARS[(h6 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h6 >> 4) & 0x0F] + HEX_CHARS[h6 & 0x0F];
|
||||||
|
if(!is224) {
|
||||||
|
hex += HEX_CHARS[(h7 >> 28) & 0x0F] + HEX_CHARS[(h7 >> 24) & 0x0F] +
|
||||||
|
HEX_CHARS[(h7 >> 20) & 0x0F] + HEX_CHARS[(h7 >> 16) & 0x0F] +
|
||||||
|
HEX_CHARS[(h7 >> 12) & 0x0F] + HEX_CHARS[(h7 >> 8) & 0x0F] +
|
||||||
|
HEX_CHARS[(h7 >> 4) & 0x0F] + HEX_CHARS[h7 & 0x0F];
|
||||||
|
}
|
||||||
|
return hex;
|
||||||
};
|
};
|
||||||
|
|
||||||
var getBlocksFromAscii = function(message) {
|
if(!root.JS_SHA256_TEST && NODE_JS) {
|
||||||
// a block is 32 bits(4 bytes), a chunk is 512 bits(64 bytes)
|
|
||||||
var length = message.length;
|
|
||||||
var chunkCount = ((length + 8) >> 6) + 1;
|
|
||||||
var blockCount = chunkCount << 4; // chunkCount * 16
|
|
||||||
var blocks = [], i;
|
|
||||||
for(i = 0;i < blockCount;++i) {
|
|
||||||
blocks[i] = 0;
|
|
||||||
}
|
|
||||||
for(i = 0;i < length;++i) {
|
|
||||||
blocks[i >> 2] |= message.charCodeAt(i) << (3 - (i & 3) << 3);
|
|
||||||
}
|
|
||||||
blocks[i >> 2] |= 0x80 << (3 - (i & 3) << 3);
|
|
||||||
blocks[blockCount - 1] = length << 3; // length * 8
|
|
||||||
return blocks;
|
|
||||||
};
|
|
||||||
|
|
||||||
var getBlocksFromUtf8 = function(message) {
|
|
||||||
var bytes = getBytesFromUtf8(message);
|
|
||||||
var length = bytes.length;
|
|
||||||
var chunkCount = ((length + 8) >> 6) + 1;
|
|
||||||
var blockCount = chunkCount << 4; // chunkCount * 16
|
|
||||||
var blocks = [], i;
|
|
||||||
for(i = 0;i < blockCount;++i) {
|
|
||||||
blocks[i] = 0;
|
|
||||||
}
|
|
||||||
for(i = 0;i < length;++i) {
|
|
||||||
blocks[i >> 2] |= bytes[i] << (3 - (i & 3) << 3);
|
|
||||||
}
|
|
||||||
blocks[i >> 2] |= 0x80 << (3 - (i & 3) << 3);
|
|
||||||
blocks[blockCount - 1] = length << 3; // length * 8
|
|
||||||
return blocks;
|
|
||||||
};
|
|
||||||
|
|
||||||
if(typeof(module) != 'undefined') {
|
|
||||||
sha256.sha256 = sha256;
|
sha256.sha256 = sha256;
|
||||||
sha256.sha224 = sha224;
|
sha256.sha224 = sha224;
|
||||||
module.exports = sha256;
|
module.exports = sha256;
|
||||||
|
|||||||
@@ -2,3 +2,12 @@ sha256 = require('../src/sha256.js').sha256;
|
|||||||
sha224 = require('../src/sha256.js').sha224;
|
sha224 = require('../src/sha256.js').sha224;
|
||||||
expect = require('expect.js');
|
expect = require('expect.js');
|
||||||
require('./test.js');
|
require('./test.js');
|
||||||
|
|
||||||
|
delete require.cache[require.resolve('../src/sha256.js')]
|
||||||
|
delete require.cache[require.resolve('./test.js')]
|
||||||
|
sha256 = null;
|
||||||
|
sha224 = null;
|
||||||
|
|
||||||
|
JS_SHA256_TEST = true;
|
||||||
|
require('../src/sha256.js');
|
||||||
|
require('./test.js');
|
||||||
|
|||||||
@@ -20,15 +20,45 @@ describe('sha256', function() {
|
|||||||
it('should be successful', function() {
|
it('should be successful', function() {
|
||||||
expect(sha256('中文')).to.be('72726d8818f693066ceb69afa364218b692e62ea92b385782363780f47529c21');
|
expect(sha256('中文')).to.be('72726d8818f693066ceb69afa364218b692e62ea92b385782363780f47529c21');
|
||||||
expect(sha256('aécio')).to.be('53196d1acfce0c4b264e01e8018c989d571351f59e33f055f76ff15b4f0516c6');
|
expect(sha256('aécio')).to.be('53196d1acfce0c4b264e01e8018c989d571351f59e33f055f76ff15b4f0516c6');
|
||||||
|
expect(sha256('𠜎')).to.be('8d10a48685dbc34484696de7ea7434d80a54c1d60100530faccf697463ef19c9');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('more than 64 bytes', function() {
|
describe('more than 64 bytes', function() {
|
||||||
it('should be successful', function() {
|
it('should be successful', function() {
|
||||||
|
expect(sha256('訊息摘要演算法第五版(英語:Message-Digest Algorithm 5,縮寫為MD5),是當前電腦領域用於確保資訊傳輸完整一致而廣泛使用的雜湊演算法之一')).to.be('d691014feebf35b3500ef6f6738d0094cac63628a7a018a980a40292a77703d1');
|
||||||
expect(sha256('訊息摘要演算法第五版(英語:Message-Digest Algorithm 5,縮寫為MD5),是當前電腦領域用於確保資訊傳輸完整一致而廣泛使用的雜湊演算法之一(又譯雜湊演算法、摘要演算法等),主流程式語言普遍已有MD5的實作。')).to.be('81a1472ebdeb09406a783d607ff49ee2fde3e9f44ac1cd158ad8d6ad3c4e69fa');
|
expect(sha256('訊息摘要演算法第五版(英語:Message-Digest Algorithm 5,縮寫為MD5),是當前電腦領域用於確保資訊傳輸完整一致而廣泛使用的雜湊演算法之一(又譯雜湊演算法、摘要演算法等),主流程式語言普遍已有MD5的實作。')).to.be('81a1472ebdeb09406a783d607ff49ee2fde3e9f44ac1cd158ad8d6ad3c4e69fa');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('special length', function() {
|
||||||
|
it('should be successful', function() {
|
||||||
|
expect(sha256('0123456780123456780123456780123456780123456780123456780')).to.be('5e6b963e2b6444dab8544beab8532850cef2a9d143872a6a5384abe37e61b3db');
|
||||||
|
expect(sha256('01234567801234567801234567801234567801234567801234567801')).to.be('85d240a4a03a0710423fc4f701da51e8785c9eaa96d718ab1c7991d6afd60d62');
|
||||||
|
expect(sha256('0123456780123456780123456780123456780123456780123456780123456780')).to.be('c3ee464d5620eb2dde3dfda4c7955dbd9e9e2e9b113c13983fc67b0dfd892a53');
|
||||||
|
expect(sha256('01234567801234567801234567801234567801234567801234567801234567801234567')).to.be('74b51c6911f9a8b5e7c499effe7604e43b672166818873c27752c248de434841');
|
||||||
|
expect(sha256('012345678012345678012345678012345678012345678012345678012345678012345678')).to.be('6fba9e623ae6abf028a1b195748814aa95eebfb22e3ec5e15d2444cd6c48186a');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Array', function() {
|
||||||
|
describe('Array', function() {
|
||||||
|
it('should be successful', function() {
|
||||||
|
expect(sha256([])).to.be('e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855');
|
||||||
|
expect(sha256([211, 212])).to.be('182889f925ae4e5cc37118ded6ed87f7bdc7cab5ec5e78faef2e50048999473f');
|
||||||
|
expect(sha256([84, 104, 101, 32, 113, 117, 105, 99, 107, 32, 98, 114, 111, 119, 110, 32, 102, 111, 120, 32, 106, 117, 109, 112, 115, 32, 111, 118, 101, 114, 32, 116, 104, 101, 32, 108, 97, 122, 121, 32, 100, 111, 103])).to.be('d7a8fbb307d7809469ca9abcb0082e4f8d5651e46d3cdb762d02d0bf37c9e592');
|
||||||
|
expect(sha256([48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55, 56, 48, 49, 50, 51, 52, 53, 54, 55])).to.be('74b51c6911f9a8b5e7c499effe7604e43b672166818873c27752c248de434841');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Uint8Array', function() {
|
||||||
|
it('should be successful', function() {
|
||||||
|
expect(sha256(new Uint8Array([]))).to.be('e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855');
|
||||||
|
expect(sha256(new Uint8Array([211, 212]))).to.be('182889f925ae4e5cc37118ded6ed87f7bdc7cab5ec5e78faef2e50048999473f');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('sha224', function() {
|
describe('sha224', function() {
|
||||||
@@ -53,13 +83,25 @@ describe('sha224', function() {
|
|||||||
it('should be successful', function() {
|
it('should be successful', function() {
|
||||||
expect(sha224('中文')).to.be('dfbab71afdf54388af4d55f8bd3de8c9b15e0eb916bf9125f4a959d4');
|
expect(sha224('中文')).to.be('dfbab71afdf54388af4d55f8bd3de8c9b15e0eb916bf9125f4a959d4');
|
||||||
expect(sha224('aécio')).to.be('d12841cafd89c534924a839e62bf35a2b5f3717b7802eb19bd8d8e15');
|
expect(sha224('aécio')).to.be('d12841cafd89c534924a839e62bf35a2b5f3717b7802eb19bd8d8e15');
|
||||||
|
expect(sha224('𠜎')).to.be('eaa0129b5509f5701db218fb7076b282e4409da52d06363aa3bdd63d');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('more than 64 bytes', function() {
|
describe('more than 64 bytes', function() {
|
||||||
it('should be successful', function() {
|
it('should be successful', function() {
|
||||||
|
expect(sha224('訊息摘要演算法第五版(英語:Message-Digest Algorithm 5,縮寫為MD5),是當前電腦領域用於確保資訊傳輸完整一致而廣泛使用的雜湊演算法之一')).to.be('0dda421f3f81272418e1313673e9d74b7f2d04efc9c52c69458e12c3');
|
||||||
expect(sha224('訊息摘要演算法第五版(英語:Message-Digest Algorithm 5,縮寫為MD5),是當前電腦領域用於確保資訊傳輸完整一致而廣泛使用的雜湊演算法之一(又譯雜湊演算法、摘要演算法等),主流程式語言普遍已有MD5的實作。')).to.be('a8cb74a54e6dc6ab6110db3915ba08ffe5e1abafaea78538fa12a626');
|
expect(sha224('訊息摘要演算法第五版(英語:Message-Digest Algorithm 5,縮寫為MD5),是當前電腦領域用於確保資訊傳輸完整一致而廣泛使用的雜湊演算法之一(又譯雜湊演算法、摘要演算法等),主流程式語言普遍已有MD5的實作。')).to.be('a8cb74a54e6dc6ab6110db3915ba08ffe5e1abafaea78538fa12a626');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('special length', function() {
|
||||||
|
it('should be successful', function() {
|
||||||
|
expect(sha224('0123456780123456780123456780123456780123456780123456780')).to.be('bc4a354d66f3cff4bc6dd6a88fbb0435cede7fd5fe94da0760cb1924');
|
||||||
|
expect(sha224('01234567801234567801234567801234567801234567801234567801')).to.be('2f148f757d1295784a7c69bf328b8bf827a536669e132234cd6f50e7');
|
||||||
|
expect(sha224('0123456780123456780123456780123456780123456780123456780123456780')).to.be('496275a96bf41aa27ce89c3ae0fc63c3a3eab063887a8ea075bd091b');
|
||||||
|
expect(sha224('01234567801234567801234567801234567801234567801234567801234567801234567')).to.be('16ee1b101fe0e0d8dd156d598931ec19d75b0f8dc0a0455733c168c8');
|
||||||
|
expect(sha224('012345678012345678012345678012345678012345678012345678012345678012345678')).to.be('04c7a30079c640e440d884cdf0d7ab04fd05501d4498cb21be29ca1f');
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user