Skip to content

Commit dfb9b50

Browse files
Merge pull request #48 from daniel-ac-martin/better-encoding
Allow encoding to be configured
2 parents dcf9c76 + 41f2779 commit dfb9b50

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ The Cryptr constructor takes 1 required argument, and an optional options object
1212

1313
- secret: `<string>`
1414
- options: `<Object>`
15+
- encoding: `<string>` Defaults to 'hex' (see [Node.js Buffer documentation] for valid options)
1516
- pbkdf2Iterations: `<number>` Defaults to 100000
1617
- saltLength: `<number>` Defaults to 64
1718

@@ -42,11 +43,13 @@ console.log(decryptedString); // bacon
4243

4344
```javascript
4445
const Cryptr = require('cryptr');
45-
const cryptr = new Cryptr('myTotallySecretKey', { pbkdf2Iterations: 10000, saltLength: 10 });
46+
const cryptr = new Cryptr('myTotallySecretKey', { encoding: 'base64', pbkdf2Iterations: 10000, saltLength: 10 });
4647

4748
const encryptedString = cryptr.encrypt('bacon');
4849
const decryptedString = cryptr.decrypt(encryptedString);
4950

50-
console.log(encryptedString); // 33b2c319908e72e899db0cad10dd1e24a999cd4922d64c6fbe261020f97ed4fdfe07124268df34bae00ee09f9d91a7
51+
console.log(encryptedString); // CPbKO/FFLQ8lVKxV+jYJcLcpTU0ZvW3D+JVfUecmJmLYY10UxYEa/wf8PWDQqhw=
5152
console.log(decryptedString); // bacon
5253
```
54+
55+
[Node.js Buffer documentation]: https://nodejs.org/api/buffer.html#buffers-and-character-encodings

index.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const crypto = require('crypto');
33
const algorithm = 'aes-256-gcm';
44
const ivLength = 16;
55
const tagLength = 16;
6+
const defaultEncoding = 'hex';
67
const defaultSaltLength = 64;
78
const defaultPbkdf2Iterations = 100000;
89

@@ -11,10 +12,15 @@ function Cryptr(secret, options) {
1112
throw new Error('Cryptr: secret must be a non-0-length string');
1213
}
1314

15+
let encoding = defaultEncoding;
1416
let saltLength = defaultSaltLength;
1517
let pbkdf2Iterations = defaultPbkdf2Iterations;
1618

1719
if (options) {
20+
if (options.encoding) {
21+
encoding = options.encoding;
22+
}
23+
1824
if (options.pbkdf2Iterations) {
1925
pbkdf2Iterations = options.pbkdf2Iterations;
2026
}
@@ -46,15 +52,15 @@ function Cryptr(secret, options) {
4652

4753
const tag = cipher.getAuthTag();
4854

49-
return Buffer.concat([salt, iv, tag, encrypted]).toString('hex');
55+
return Buffer.concat([salt, iv, tag, encrypted]).toString(encoding);
5056
};
5157

5258
this.decrypt = function decrypt(value) {
5359
if (value == null) {
5460
throw new Error('value must not be null or undefined');
5561
}
5662

57-
const stringValue = Buffer.from(String(value), 'hex');
63+
const stringValue = Buffer.from(String(value), encoding);
5864

5965
const salt = stringValue.subarray(0, saltLength);
6066
const iv = stringValue.subarray(saltLength, tagPosition);

tests/index.js

+21
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,27 @@ test('works...', (t) => {
1414
t.equal(decryptedString, testData, 'decrypted aes256 correctly');
1515
});
1616

17+
test('works with custom encoding', (t) => {
18+
t.plan(1);
19+
20+
const cryptr = new Cryptr(testSecret, { encoding: 'base64' });
21+
const encryptedString = cryptr.encrypt(testData);
22+
const decryptedString = cryptr.decrypt(encryptedString);
23+
24+
t.equal(decryptedString, testData, 'decrypted aes256 correctly with custom encoding');
25+
});
26+
27+
test('custom encoding affects output length', (t) => {
28+
t.plan(1);
29+
30+
const cryptr = new Cryptr(testSecret, { encoding: 'base64' });
31+
const cryptr2 = new Cryptr(testSecret);
32+
const encryptedString = cryptr.encrypt(testData);
33+
const encryptedString2 = cryptr2.encrypt(testData);
34+
35+
t.ok(encryptedString.length < encryptedString2.length, 'custom encoding was shorter');
36+
});
37+
1738
test('works with custom pbkdf2Iterations', (t) => {
1839
t.plan(1);
1940

0 commit comments

Comments
 (0)