tweetnacl

Creator: coderz1093

Last updated:

0 purchases

tweetnacl Image
tweetnacl Images
Add to Cart

Description:

tweetnacl

A library for Dart developers.
Usage #
A simple usage example:
import 'package:tweetnacl/tweetnacl.dart';
import "dart:convert";
import 'dart:typed_data';

void main(){
KeyPair kp = Signature.keyPair();
print("secretKey: \"${TweetNaclFast.hexEncodeToString(kp.secretKey)}\"");
print("publicKey: \"${TweetNaclFast.hexEncodeToString(kp.publicKey)}\"");

Uint8List bytes = utf8.encode("test string");

Signature s1 = Signature(null, kp.secretKey);
Uint8List signature = s1.detached(bytes);
print("signature: \"${TweetNaclFast.hexEncodeToString(signature)}\"");

Signature s2 = Signature(kp.publicKey, null);
bool result = s2.detached_verify(bytes, signature);
print("verify: \"${result}\"");
}
copied to clipboard
Features and bugs #
Please file feature requests and bugs at the issue tracker.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.