Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1125)

Unified Diff: lib/src/hmac.dart

Issue 1892553002: Fix strong mode warnings. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « lib/src/hash.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « lib/src/hash.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698