dependabot[bot] d226bcc7f3 Bump @types/node from 18.15.5 to 18.15.6
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.15.5 to 18.15.6.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-24 05:06:15 +00:00
2022-02-14 10:24:23 +07:00
2022-02-15 11:58:10 +07:00
2022-02-14 18:41:48 +07:00
2022-04-01 11:49:26 +07:00
2022-02-14 10:24:23 +07:00
2022-02-14 10:24:23 +07:00
2022-02-14 10:24:23 +07:00
2022-02-14 16:05:17 +07:00
2023-01-05 16:33:18 +00:00
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

Description
No description provided
Readme 1.2 MiB
Languages
TypeScript 99.3%
JavaScript 0.5%
Shell 0.2%