commit | a4b6b887bf132702e832a2a8f9fb776fc89d2649 | [log] [tgz] |
---|---|---|
author | Aditya Kishore <akushwarrior@gmail.com> | Fri Jun 05 22:12:28 2020 -0700 |
committer | Aditya Kishore <akushwarrior@gmail.com> | Fri Jun 05 22:12:28 2020 -0700 |
tree | 82f395a496d475134f9b8fca0bf9169550304be4 | |
parent | fb701b17912c2c5074f932444c83fcf6401eba4a [diff] |
Added AES-GCM & tests, cleaned up a few of the lints
A Dart library for encryption and decryption. In this release, most of the classes are ports of Bouncy Castle from Java to Dart. The porting is almost always direct except for some classes that had been added to ease the use of low level data.
To make sure nothing fails, tests and benchmarks for every algorithm are provided. The expected results are taken from the Bouncy Castle Java version and also from standards, and matched against the results got from Pointy Castle.
This library was adopted from the original project at https://github.com/PointyCastle/pointycastle at the request of the authors to help support ongoing development. A list of major contributors is provided at contributors.md
In this release, the following algorithms are implemented. Most of the below can be used directly with the registry:
AEAD ciphers:
Block ciphers:
Block cipher modes of operation:
Paddings:
Asymmetric block ciphers:
Asymmetric block cipher encodings:
Stream ciphers:
Digests:
MACs:
Signatures:
Password based key derivators:
HMAC based key derivators:
Asymmetric key generators:
Secure PRNGs:
There are two ways to instantiate objects that implement the algorithms:
Using the registry, the algorithm name is provided to high-level class factories.
This is especially convenient when an algorithm involves multiple algorithm implementation classes to implement. All the necessary classes can all be instantiated with a single name (e.g. “HMAC/SHA-256” or “SHA-1/HMAC/PBKDF2” or “AES/CBC/PKCS7”), and they are automatically combined together with the correct values.
For example,
final sha256 = Digest("SHA-256"); final sha1 = Digest("SHA-1"); final md5 = Digest("MD5"); final hmacSha256 = Mac("SHA-256/HMAC"); final hmacSha1 = Mac("SHA-1/HMAC"); final hmacMd5 = Mac("MD5/HMAC"); final derivator = KeyDerivator("SHA-1/HMAC/PBKDF2"); final signer = Signer("SHA-256/RSA");
Without the registry, each implementation class must be instantiated using its constructor.
If an algorithm involves multiple algorithm implementation classes, they each have to be individually instantiated and combined together with the correct values.
For example,
final sha256 = SHA256Digest(); final sha1 = SHA1Digest(); final md5 = MD5Digest(); final hmacSha256 = HMac(SHA256Digest(), 64); final hmacSha512 = HMac(SHA512Digest(), 128); final hmacMd5 = HMac(MD5Digest(), 64); final derivator = PBKDF2KeyDerivator(HMac(SHA256Digest(), 64)); final signer = RSASigner(SHA256Digest(), '0609608648016503040201');
Using the registry means that all algorithms will be imported by default, which can increase the compiled size of your program.
To avoid this, instantiate all classes directly by using the constructors. But which classes can be instantiated with its constructor will depend on which libraries have been imported.
A program can take one of these three approaches for importing Point Castle libraries:
The “pointycastle.dart” file exports:
But it does not export any of the algorithm implementation classes.
import "package:pointycastle/pointycastle.dart";
With this import, none of the implementation classes can be instantiated directly. The program can only use the registry.
For example,
final sha256 = Digest("SHA-256"); // final md5 = MD5Digest(); // not available final p = Padding("PKCS7"); // final s = FortunaRandom(); // not available
The “export.dart” file exports:
That is, everything!
import "package:pointycastle/export.dart";
With this import, all of the implementation classes can be instantiated directly. The program can also use the registry.
For example, this works without any additional imports:
final sha256 = Digest("SHA-256"); final md5 = MD5Digest(); final p = Padding("PKCS7"); final s = FortunaRandom();
The “api.dart” exports only:
It does not include the implementations of the interfaces, nor any algorithm implementation class.
import "package:pointycastle/api.dart"; // additional imports will be needed
With this import, only some of the implementation classes can be instantiated directly (i.e. those that are also explicitly imported). The program can also use the registry.
For example, the following only works because of the additional imports:
// In addition to "package:pointycastle/api.dart": import "package:pointycastle/digests/sha256.dart"; import "package:pointycastle/digests/md5.dart" import 'package:pointycastle/paddings/pkcs7.dart'; final sha256 = Digest("SHA-256"); final md5 = MD5Digest(); final p = Padding("PKCS7"); // final s = FortunaRandom(); // not available without 'package:pointycastle/random/fortuna_random.dart'
Some articles on how to use some of Pointy Castle's features can be found under the tutorials directory in the sources.
Note: the above links are to the most recent versions on the master branch on GitHub. They may be different from the version here.