| Index: lib/src/hmac.dart
|
| diff --git a/lib/src/hmac.dart b/lib/src/hmac.dart
|
| index f5bf6bfcd454d1d10e067a6be6036505da934612..2b38c1af485eda640ac9770ffa5bf544d6d26560 100644
|
| --- a/lib/src/hmac.dart
|
| +++ b/lib/src/hmac.dart
|
| @@ -15,7 +15,7 @@ import 'hash.dart';
|
| ///
|
| /// HMAC allows messages to be cryptographically authenticated using any
|
| /// iterated cryptographic hash function.
|
| -class Hmac extends Converter<List<int>, Digest> {
|
| +class Hmac extends ChunkedConverter<List<int>, Digest, List<int>, Digest> {
|
| /// The hash function used to compute the authentication digest.
|
| final Hash _hash;
|
|
|
|
|