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
|
const assert = require('assert');
const { describe, it } = require('mocha');
const { expect } = require('chai');
const { SodiumPlus } = require('../index');
const VERBOSE = false;
let sodium;
(async () => {
if (!sodium) sodium = await SodiumPlus.auto();
if (VERBOSE) {
console.log({
'libsodium-wrappers': sodium.isLibsodiumWrappers(),
'sodium-native': sodium.isSodiumNative()
});
}
})();
describe('SodiumPlus', () => {
it('SodiumPlus.crypto_pwhash_str', async function () {
this.timeout(0);
if (!sodium) sodium = await SodiumPlus.auto();
let password = 'correct horse battery staple';
let hashed = await sodium.crypto_pwhash_str(
password,
sodium.CRYPTO_PWHASH_OPSLIMIT_INTERACTIVE,
sodium.CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE
);
assert(hashed);
assert(await sodium.crypto_pwhash_str_verify(password, hashed));
assert(await sodium.crypto_pwhash_str_verify('incorrect password', hashed) === false);
let needs;
needs = await sodium.crypto_pwhash_str_needs_rehash(
hashed,
sodium.CRYPTO_PWHASH_OPSLIMIT_INTERACTIVE,
sodium.CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE
);
expect(needs).to.be.equals(false);
needs = await sodium.crypto_pwhash_str_needs_rehash(
hashed,
sodium.CRYPTO_PWHASH_OPSLIMIT_INTERACTIVE + 1,
sodium.CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE
);
expect(needs).to.be.equals(true);
needs = await sodium.crypto_pwhash_str_needs_rehash(
hashed,
sodium.CRYPTO_PWHASH_OPSLIMIT_INTERACTIVE,
sodium.CRYPTO_PWHASH_MEMLIMIT_INTERACTIVE << 1
);
expect(needs).to.be.equals(true);
});
});
|