kepler 1.0.3 copy "kepler: ^1.0.3" to clipboard
kepler: ^1.0.3 copied to clipboard

Encrypt and decrypt data using the secp256k1 elliptic curve. This is the High level API build from pointycastle. A fork of secp256k1Cipher.

example/lib/main.dart

// ignore_for_file: avoid_print

import 'package:pointycastle/pointycastle.dart';
import 'package:kepler/kepler.dart';

void main() {
  // Create Alice's keypair

  var alice = Kepler.generateKeyPair();

  print(
    "alice private key: " +
        Kepler.strinifyPrivateKey(alice.privateKey as ECPrivateKey),
  );
  print(
    "alice public key: " +
        Kepler.strinifyPublicKey(alice.publicKey as ECPublicKey),
  );

  // Create Bob's keypair
  var bob = Kepler.generateKeyPair();

  // This is what alice wants to say to bob
  var rawStr = 'Encrypt and decrypt data using secp256k1';

  // use alic's privatekey and bob's publickey means alice says to bob
  var encMap = Kepler.pubkeyEncrypt(
    Kepler.strinifyPrivateKey(alice.privateKey as ECPrivateKey),
    Kepler.strinifyPublicKey(bob.publicKey as ECPublicKey),
    rawStr,
  );

  // Get encrypted base64 string
  var encStr = encMap['enc'];
  print("encrypted text: " + encStr!);

  // Get random IV
  var iv = encMap['iv'];
  print("iv: " + iv!);
  // Now, you can send enc_str and IV to Bob

  // Use bob's privatekey and alice's publickey to decrypt alices message, for Bob to read.
  var decryptd = Kepler.privateDecrypt(
    Kepler.strinifyPrivateKey(bob.privateKey as ECPrivateKey),
    Kepler.strinifyPublicKey(alice.publicKey as ECPublicKey),
    encStr,
    iv,
  );
  print('decrypted text: $decryptd');
}
0
likes
140
pub points
73%
popularity

Publisher

unverified uploader

Encrypt and decrypt data using the secp256k1 elliptic curve. This is the High level API build from pointycastle. A fork of secp256k1Cipher.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

base58check, hex, pointycastle

More

Packages that depend on kepler