steemdart_ecc 0.4.4+0 copy "steemdart_ecc: ^0.4.4+0" to clipboard
steemdart_ecc: ^0.4.4+0 copied to clipboard

Elliptic curve cryptography functions in Dart. Private Key, Public Key, Signature, AES, Encryption, Decryption

Elliptic curve cryptography (ECC) in Dart #

Elliptic curve cryptography lib for Steem based blockchain in Dart lang.

Build Status

Usage #

A simple usage example:

import 'package:steemdart_ecc/steemdart_ecc.dart';

main() {
  // Construct the Steem private key from string
  SteemPrivateKey privateKey = SteemPrivateKey.fromString(
      '5KQwrPbwdL6PhXujxW37FSSQZ1JiwsST4cqQzDeyXtP79zkvFD3');

  // Get the related Steem public key
  SteemPublicKey publicKey = privateKey.toSteemPublicKey();
  // Print the Steem public key
  print(publicKey.toString());

  // Going to sign the data
  String data = 'data';

  // Sign
  SteemSignature signature = privateKey.signString(data);
  // Print the Steem signature
  print(signature.toString());

  // Verify the data using the signature
  signature.verify(data, publicKey);
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

References #

3
likes
110
pub points
20%
popularity

Publisher

unverified uploader

Elliptic curve cryptography functions in Dart. Private Key, Public Key, Signature, AES, Encryption, Decryption

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bs58check, buffer, convert, crypto, http, json_annotation, pointycastle

More

Packages that depend on steemdart_ecc