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

Side by Side Diff: packages/crypto/lib/src/hash.dart

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 4 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 unified diff | Download patch
« no previous file with comments | « packages/crypto/lib/src/digest_sink.dart ('k') | packages/crypto/lib/src/hash_sink.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'dart:convert';
6
7 import 'digest.dart';
8 import 'digest_sink.dart';
9
10 /// An interface for cryptographic hash functions.
11 ///
12 /// Every hash is a converter that takes a list of ints and returns a single
13 /// digest. When used in chunked mode, it will only ever add one digest to the
14 /// inner [Sink].
15 abstract class Hash extends Converter<List<int>, Digest> {
16 /// The internal block size of the hash in bytes.
17 ///
18 /// This is exposed for use by the `Hmac` class, which needs to know the block
19 /// size for the [Hash] it uses.
20 int get blockSize;
21
22 const Hash();
23
24 @override
25 Digest convert(List<int> data) {
26 var innerSink = new DigestSink();
27 var outerSink = startChunkedConversion(innerSink);
28 outerSink.add(data);
29 outerSink.close();
30 return innerSink.value;
31 }
32
33 @override
34 ByteConversionSink startChunkedConversion(Sink<Digest> sink);
35 }
OLDNEW
« no previous file with comments | « packages/crypto/lib/src/digest_sink.dart ('k') | packages/crypto/lib/src/hash_sink.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698