Go to file
Sambo Chea 76e07d8c56
All checks were successful
continuous-integration/drone/push Build is passing
Up drone ci
2023-05-02 12:19:23 +07:00
.github Update codacy/codacy-analysis-cli-action digest to db33ad5 2023-03-17 11:15:57 +00:00
.husky Initial commit 2022-02-14 10:24:23 +07:00
dist Updated build for crytojs 2022-02-15 11:58:10 +07:00
dummy Task: Fixed aes and tests 2022-02-14 18:41:48 +07:00
src Task: Add write file from string and tests 2022-02-15 11:57:23 +07:00
test Task: Add write file from string and tests 2022-02-15 11:57:23 +07:00
.drone.yml Up drone ci 2023-05-02 12:19:23 +07:00
.eslintrc.js Initial commit 2022-02-14 10:24:23 +07:00
.gitignore Task: Add write file from string and tests 2022-02-15 11:57:23 +07:00
.prettierrc.json Initial commit 2022-02-14 10:24:23 +07:00
jest.config.js Task: Completed for cryptojs and tests functions and validate keys 2022-02-14 12:30:32 +07:00
LICENSE Initial commit 2022-02-14 10:24:23 +07:00
package-lock.json Bump eslint from 8.36.0 to 8.37.0 2023-03-31 13:26:43 +00:00
package.json Bump eslint from 8.36.0 to 8.37.0 2023-03-31 13:26:43 +00:00
README.md Add guide for README.md 2022-02-14 16:05:17 +07:00
renovate.json Add renovate.json 2023-01-05 16:33:18 +00:00
tsconfig.json Add build and allow dist 2022-02-14 16:15:32 +07:00

CUBETIQ CryptoJS

  • Default Encryption
  • E2E Encryption

How-to-use

  • Default Encryption Provider
const key = "67rKmuc6DiDukE0jsUP421Eizo4CreaL6Q7Pg/NmH/s="
const iv = "FEFM9AY2m5jDq6GZ+CfLIA=="
const text = "Hello World"
const provider = CryptoProvider.newInstance(
    new DefaultCryptoProvider({
        key: key,
        iv: iv,
    })
)

const encrypted = provider.encrypt(text)
const decrypted = provider.decrypt(encrypted)

// Output
console.log(text) // "Hello World"
console.log(decrypted) // "Hello World"
  • E2E Encryption Provider
const PRIVATE_KEY_VALUE = "-----BEGIN RSA PRIVATE KEY-----"
const PUBLIC_KEY_VALUE = "-----BEGIN RSA PUBLIC KEY-----"

const text = "Hello World"
const provider = CryptoProvider.newInstance(
    new E2ECryptoProvider({
        publicKey: PUBLIC_KEY_VALUE,
        privateKey: PRIVATE_KEY_VALUE,
    })
)

const encrypted = provider.encrypt(text)
const decrypted = provider.decrypt(encrypted)

// Output
console.log(text) // "Hello World"
console.log(decrypted) // "Hello World"

Generate for Default Encryption (Key and IV)

const key = crypto.randomBytes(32)
const iv = crypto.randomBytes(16)

Generate for E2E Encryption (Public and Private Key)

openssl genrsa -out rsa_4096_priv.pem 4096
openssl rsa -pubout -in rsa_4096_priv.pem -out rsa_4096_pub.pem

Contributors