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

Unified Diff: lib/src/hash.dart

Issue 2032903006: Stop implementing ChunkedConverter. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Created 4 years, 6 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
« CHANGELOG.md ('K') | « CHANGELOG.md ('k') | lib/src/hmac.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/hash.dart
diff --git a/lib/src/hash.dart b/lib/src/hash.dart
index 4049025c978862899f597ef2e77f1f83d968fc82..fad44aee80a3a59ca83d6930d44cf7b0852ab311 100644
--- a/lib/src/hash.dart
+++ b/lib/src/hash.dart
@@ -12,8 +12,7 @@ import 'digest_sink.dart';
/// Every hash is a converter that takes a list of ints and returns a single
/// digest. When used in chunked mode, it will only ever add one digest to the
/// inner [Sink].
-abstract class Hash
- extends ChunkedConverter<List<int>, Digest, List<int>, Digest> {
+abstract class Hash extends Converter<List<int>, Digest> {
/// The internal block size of the hash in bytes.
///
/// This is exposed for use by the [Hmac] class, which needs to know the block
« CHANGELOG.md ('K') | « CHANGELOG.md ('k') | lib/src/hmac.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698