-
-
Notifications
You must be signed in to change notification settings - Fork 277
/
Copy pathindex.js
244 lines (234 loc) · 7.36 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
import assert from "node:assert";
import { createRequire } from "node:module";
import bcryptcpp from "bcrypt";
import bcrypt from "../index.js";
const require = createRequire(import.meta.url);
const tests = [
function encodeBase64(done) {
var str = bcrypt.encodeBase64(
[
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
0x0c, 0x0d, 0x0e, 0x0f, 0x10,
],
16,
);
assert.strictEqual(str, "..CA.uOD/eaGAOmJB.yMBu");
done();
},
function decodeBase64(done) {
var bytes = bcrypt.decodeBase64("..CA.uOD/eaGAOmJB.yMBv.", 16);
assert.deepEqual(
bytes,
[
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b,
0x0c, 0x0d, 0x0e, 0x0f,
],
);
done();
},
function genSaltSync(done) {
var salt = bcrypt.genSaltSync(10);
assert(salt);
assert(typeof salt === "string");
assert(salt.length > 0);
done();
},
function genSalt(done) {
bcrypt.genSalt(10, function (err, salt) {
assert(!err);
assert(salt);
assert(typeof salt === "string");
assert(salt.length > 0);
done();
});
},
function hashSync(done) {
assert.doesNotThrow(function () {
bcrypt.hashSync("hello", 10);
});
assert.notEqual(bcrypt.hashSync("hello", 10), bcrypt.hashSync("hello", 10));
done();
},
function hash(done) {
bcrypt.hash("hello", 10, function (err, hash) {
assert(!err);
assert(hash);
done();
});
},
function compareSync(done) {
var salt1 = bcrypt.genSaltSync(),
hash1 = bcrypt.hashSync("hello", salt1); // $2b$
var salt2 = bcrypt.genSaltSync().replace(/\$2b\$/, "$2y$"),
hash2 = bcrypt.hashSync("world", salt2);
var salt3 = bcrypt.genSaltSync().replace(/\$2b\$/, "$2a$"),
hash3 = bcrypt.hashSync("hello world", salt3);
assert.strictEqual(hash1.substring(0, 4), "$2b$");
assert(bcrypt.compareSync("hello", hash1));
assert(!bcrypt.compareSync("hello", hash2));
assert(!bcrypt.compareSync("hello", hash3));
assert.strictEqual(hash2.substring(0, 4), "$2y$");
assert(bcrypt.compareSync("world", hash2));
assert(!bcrypt.compareSync("world", hash1));
assert(!bcrypt.compareSync("world", hash3));
assert.strictEqual(hash3.substring(0, 4), "$2a$");
assert(bcrypt.compareSync("hello world", hash3));
assert(!bcrypt.compareSync("hello world", hash1));
assert(!bcrypt.compareSync("hello world", hash2));
done();
},
function compare(done) {
var salt1 = bcrypt.genSaltSync(),
hash1 = bcrypt.hashSync("hello", salt1); // $2a$
var salt2 = bcrypt.genSaltSync();
salt2 = salt2.substring(0, 2) + "y" + salt2.substring(3); // $2y$
var hash2 = bcrypt.hashSync("world", salt2);
bcrypt.compare("hello", hash1, function (err, same) {
assert(!err);
assert(same);
bcrypt.compare("hello", hash2, function (err, same) {
assert(!err);
assert(!same);
bcrypt.compare("world", hash2, function (err, same) {
assert(!err);
assert(same);
bcrypt.compare("world", hash1, function (err, same) {
assert(!err);
assert(!same);
done();
});
});
});
});
},
function getSalt(done) {
var hash1 = bcrypt.hashSync("hello", bcrypt.genSaltSync());
var salt = bcrypt.getSalt(hash1);
var hash2 = bcrypt.hashSync("hello", salt);
assert.equal(hash1, hash2);
done();
},
function getRounds(done) {
var hash1 = bcrypt.hashSync("hello", bcrypt.genSaltSync());
assert.equal(bcrypt.getRounds(hash1), 10);
done();
},
function truncates(done) {
assert(!bcrypt.truncates(""));
assert(!bcrypt.truncates("a".repeat(72)));
assert(bcrypt.truncates("a".repeat(73)));
assert(bcrypt.truncates("๏ เป็นมนุษย์สุดประเสริฐเลิศคุณค่า"));
done();
},
function progress(done) {
bcrypt.genSalt(12, function (err, salt) {
assert(!err);
var progress = [];
bcrypt.hash(
"hello world",
salt,
function (err, hash) {
assert(!err);
assert(typeof hash === "string");
assert(progress.length >= 2);
assert.strictEqual(progress[0], 0);
assert.strictEqual(progress[progress.length - 1], 1);
done();
},
function (n) {
progress.push(n);
},
);
});
},
function promise(done) {
bcrypt.genSalt(10).then(
function (salt) {
bcrypt.hash("hello", salt).then(
function (hash) {
assert(hash);
bcrypt.compare("hello", hash).then(
function (result) {
assert(result);
bcrypt.genSalt(/* no args */).then(
function (salt) {
assert(salt);
done();
},
function (err) {
assert(false);
},
);
},
function (err) {
assert(false);
},
);
},
function (err) {
assert(false);
},
);
},
function (err) {
assert(false);
},
);
},
function compat_hash(done) {
var pass = [
"",
" ",
" a ",
"a".repeat(72),
"a".repeat(73),
"Heizölrückstoßabdämpfung",
"Ξεσκεπάζω τὴν ψυχοφθόρα βδελυγμία",
"El pingüino Wenceslao hizo kilómetros bajo exhaustiva lluvia y ",
"Où l'obèse jury mûr",
"Úrmhac na hÓighe Beannaithe",
"Árvíztűrő tükörfúrógép",
"Sævör grét áðan því úlpan var ónýt",
"わかよたれそつねならむ",
"ケフコエテ アサキユメミシ",
"דג סקרן שט בים מאוכזב ולפתע מצא לו חברה איך הקליטה",
"Pchnąć w tę łódź jeża lub ośm skrzyń fig",
"В чащах юга жил бы цитрус? Да, но фальшивый экземпляр!",
"๏ เป็นมนุษย์สุดประเสริฐเลิศคุณค่า",
"Pijamalı hasta, yağız şoföre çabucak güvendi.",
];
for (var i = 0; i < pass.length; i++) {
var salt = bcrypt.genSaltSync(),
hash1 = bcryptcpp.hashSync(pass[i], salt),
hash2 = bcrypt.hashSync(pass[i], salt);
assert.equal(hash1, hash2);
}
done();
},
function compat_rounds(done) {
var salt1 = bcrypt.genSaltSync(0), // $10$ like not set
salt2 = bcryptcpp.genSaltSync(0);
assert.strictEqual(salt1.substring(0, 7), "$2b$10$");
assert.strictEqual(salt2.substring(0, 7), "$2b$10$");
salt1 = bcrypt.genSaltSync(3); // $04$ is lower cap
salt2 = bcryptcpp.genSaltSync(3);
assert.strictEqual(salt1.substring(0, 7), "$2b$04$");
assert.strictEqual(salt2.substring(0, 7), "$2b$04$");
salt1 = bcrypt.genSaltSync(32); // $31$ is upper cap
salt2 = bcryptcpp.genSaltSync(32);
assert.strictEqual(salt1.substring(0, 7), "$2b$31$");
assert.strictEqual(salt2.substring(0, 7), "$2b$31$");
done();
},
function commonJS(done) {
var umd = require("../umd/index.js");
umd.genSalt().then(done);
},
];
function next() {
if (!tests.length) return;
var test = tests.shift();
console.log(test.name);
test(next);
}
next();