Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Commit

Permalink
Add blake2b to registry
Browse files Browse the repository at this point in the history
  • Loading branch information
bbedward committed Dec 27, 2018
1 parent 2c77d04 commit 75fe38b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/src/registry/registration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import 'package:pointycastle/block/modes/ecb.dart';
import 'package:pointycastle/block/modes/gctr.dart';
import 'package:pointycastle/block/modes/ofb.dart';
import 'package:pointycastle/block/modes/sic.dart';
import 'package:pointycastle/digests/blake2b.dart';
import 'package:pointycastle/digests/md2.dart';
import 'package:pointycastle/digests/md4.dart';
import 'package:pointycastle/digests/md5.dart';
Expand Down Expand Up @@ -118,6 +119,7 @@ void _registerBlockCiphers(FactoryRegistry registry) {
}

void _registerDigests(FactoryRegistry registry) {
registry.register(Blake2bDigest.FACTORY_CONFIG);
registry.register(MD2Digest.FACTORY_CONFIG);
registry.register(MD4Digest.FACTORY_CONFIG);
registry.register(MD5Digest.FACTORY_CONFIG);
Expand Down

0 comments on commit 75fe38b

Please sign in to comment.