Skip to content

Releases: cmmvio/cmmv-encryptor

v0.7.0

22 Feb 02:44
Compare
Choose a tag to compare
release: v0.7.0

0.6.3

28 Nov 11:54
Compare
Choose a tag to compare

Version 0.6.0 (November 28, 2024)

New Features

  • Simple Key Generation with Elliptic Curves:
    Introduced a function for generating simple keys using Elliptic Curve Cryptography (ECC). This feature simplifies the process of key creation and enhances compatibility with blockchain standards.
    • Utilizes the secp256k1 curve, commonly used in blockchain technologies.
    • Example usage:
      const { ECKeys, Encryptor } = require('@cmmv/encryptor');
      
      const keys = ECKeys.generateKeys();
      console.log('Private Key:', ECKeys.getPrivateKey(keys));
      console.log('Public Key:', ECKeys.getPublicKey(keys));

0.5.0

27 Nov 11:11
Compare
Choose a tag to compare
v0.5.0

release: v0.5.0