This is a wrapper library to easily make the webcrypto capabilities available in Dart. Currently only hash functions available, where also a native Dart implementation is available.
If the selected browser does not support webcrypto API the library falls back to native Dart implementations.
Unfortunetaly the promise based webcrypto interface is not compatible with the synchronous native Hash interface.
var h = new SHA1();
h.add(UTF8.encode("hashme"));
h.close().then((List<int> digest){
print(CryptoUtils.bytesToHex(digest));
});
Add this to your package's pubspec.yaml file:
dependencies:
dart_webcrypto: ^0.0.3
You can install packages from the command line:
with pub:
$ pub get
Alternatively, your editor might support pub get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:dart_webcrypto/dart_webcrypto.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
0.0.3 | May 15, 2017 |
|
|
0.0.2 | May 31, 2016 |
|
|
0.0.1 | Sep 8, 2015 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
0
|
Health:
Code health derived from static analysis.
[more]
|
--
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
--
|
Overall:
Weighted score of the above.
[more]
|
0
|
The package version is not analyzed, because it does not support Dart 2. Until this is resolved, the package will receive a health and maintenance score of 0.
Support Dart 2 in pubspec.yaml
.
The SDK constraint in pubspec.yaml
doesn't allow the Dart 2.0.0 release. For information about upgrading it to be Dart 2 compatible, please see https://www.dartlang.org/dart-2#migration.
Make sure dartdoc
successfully runs on your package's source files. (-10 points)
Dependencies were not resolved.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=1.8.0 <2.0.0 |