-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcrypto.js
69 lines (56 loc) · 1.71 KB
/
crypto.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
'use strict';
var AES = require('crypto-js/aes'),
CryptoJS = require('crypto-js'),
config = require('../config').crypto,
passphrase= config.secret_passphrase,
JsonFormatter = {},
crypto = {};
module.exports = {
createSalt : createSalt,
createHash : createHash,
encrypt : encrypt,
decrypt : decrypt
};
JsonFormatter.stringify = function (cipherParams) {
// create json object with ciphertext
var jsonObj = {
ct: cipherParams.ciphertext.toString(CryptoJS.enc.Base64)
};
// optionally add iv and salt
if (cipherParams.iv) {
jsonObj.iv = cipherParams.iv.toString();
}
if (cipherParams.salt) {
jsonObj.s = cipherParams.salt.toString();
}
// stringify json object
return JSON.stringify(jsonObj);
};
JsonFormatter.parse = function (jsonStr) {
// parse json string
var jsonObj = JSON.parse(jsonStr),
cipherParams = CryptoJS.lib.CipherParams.create({
ciphertext: CryptoJS.enc.Base64.parse(jsonObj.ct)
});
// optionally extract iv and salt
if (jsonObj.iv) {
cipherParams.iv = CryptoJS.enc.Hex.parse(jsonObj.iv);
}
if (jsonObj.s) {
cipherParams.salt = CryptoJS.enc.Hex.parse(jsonObj.s);
}
return cipherParams;
};
function createSalt() {
return Math.round(new Date().valueOf() * Math.random()) + '';
}
function createHash(plainText, salt){
return CryptoJS.HmacSHA256(plainText, salt).toString();
}
function encrypt(value){
return AES.encrypt(value, passphrase, { format: JsonFormatter }).toString();
}
function decrypt(value){
var decrypted = (AES.decrypt(value, passphrase, { format: JsonFormatter }));
return decrypted.toString(CryptoJS.enc.Utf8);
}