Vben
2021-02-26 fcee7d4eb71471dd40567c8d7c97302eeee80697
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
import { encrypt, decrypt } from 'crypto-js/aes';
import { parse } from 'crypto-js/enc-utf8';
import pkcs7 from 'crypto-js/pad-pkcs7';
import ECB from 'crypto-js/mode-ecb';
import md5 from 'crypto-js/md5';
import UTF8 from 'crypto-js/enc-utf8';
import Base64 from 'crypto-js/enc-base64';
 
export interface EncryptionParams {
  key: string;
  iv: string;
}
 
export class AesEncryption {
  private key;
  private iv;
 
  constructor(opt: Partial<EncryptionParams> = {}) {
    const { key, iv } = opt;
    if (key) {
      this.key = parse(key);
    }
    if (iv) {
      this.iv = parse(iv);
    }
  }
 
  get getOptions() {
    return {
      mode: ECB,
      padding: pkcs7,
      iv: this.iv,
    };
  }
 
  encryptByAES(cipherText: string) {
    return encrypt(cipherText, this.key, this.getOptions).toString();
  }
 
  decryptByAES(cipherText: string) {
    return decrypt(cipherText, this.key, this.getOptions).toString(UTF8);
  }
}
 
export function encryptByBase64(cipherText: string) {
  return Base64.parse(cipherText).toString(UTF8);
}
 
export function decodeByBase64(cipherText: string) {
  return Base64.parse(cipherText).toString(UTF8);
}
 
export function encryptByMd5(password: string) {
  return md5(password).toString();
}