Blame view

app/controllers/decrypt.js 703 Bytes
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
1
2
3
4
5
6
7
8
  var ursa = require('ursa');
  var fs = require('fs');
  
  var decrypt = {};
  
  decrypt.decrypter = false;
  
  decrypt.whenOk = function (cb) {
2f593328   Geoffrey PREUD'HOMME   Linting
9
10
11
12
13
      if (this.encrypter) {
          cb();
      } else {
          this.prepare(cb);
      }
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
14
15
16
  };
  
  decrypt.prepare = function (cb) {
2f593328   Geoffrey PREUD'HOMME   Linting
17
18
19
20
21
22
23
      fs.readFile('config/ci_com.pem', function (err, data) {
          if (err) {
              throw err;
          }
          this.decrypter = ursa.createPrivateKey(data);
          cb();
      });
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
24
25
  };
  
2f593328   Geoffrey PREUD'HOMME   Linting
26
27
  decrypt.preload = function (cb) {
      this.whenOk(cb);
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
28
29
30
  };
  
  decrypt.decrypt = function (string, cb) {
2f593328   Geoffrey PREUD'HOMME   Linting
31
32
33
      this.whenOk(function () {
          cb(this.decrypter.decrypt(string, 'base64', 'utf8', ursa.RSA_PKCS1_PADDING));
      });
2201e360   Geoffrey PREUD'HOMME   Le login se fait ...
34
35
36
  };
  
  module.exports = decrypt;