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

Side by Side Diff: CHANGELOG.md

Issue 1355223002: Change Hash subclasses to be Converters. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Add docs Created 5 years, 3 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 | « no previous file | lib/src/digest.dart » ('j') | lib/src/digest_sink.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Changelog 1 ## 0.9.2
2 2
3 ## next 3 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert
4 between `List<int>`s and the new `Digest` class, which represents a hash
5 digest. The `Converter` APIs—`Hash.convert()` and
6 `Hash.startChunkedConversion`—should be used in preference to the old APIs,
7 which are now deprecated.
4 8
5 * Hashing (md5, sha1, sha256) now works correctly for input sizes 9 * Top-level `sha1`, `sha256`, and `md5` fields have been added to make it easier
6 up to 64 bits. 10 to convert
Bob Nystrom 2015/09/22 17:47:31 " to convert..."?
nweiz 2015/09/22 21:37:33 Done.
7 * Small example added to generate message digests for files. 11
12 * Hashing now works correctly for input sizes up to 2^64 bytes.
13
14 ### Deprecations
15
16 * `Hash.add`, `Hash.close`, and `Hash.newInstance` are deprecated.
17 `Hash.convert` should be used for hashing single values, and
18 `Hash.startChunkedConversion` should be used for hashing streamed values.
8 19
9 ## 0.9.1 20 ## 0.9.1
10 21
11 * Base64 convert returns an Uint8List 22 * Base64 convert returns an Uint8List
12 * Base64 codec and encoder can now take an encodePaddingCharacter 23 * Base64 codec and encoder can now take an encodePaddingCharacter
13 * Implement a Base64 codec similar to codecs in 'dart:convert' 24 * Implement a Base64 codec similar to codecs in 'dart:convert'
14 25
15 ## 0.9.0 26 ## 0.9.0
16 27
17 * ChangeLog starts here. 28 * ChangeLog starts here.
OLDNEW
« no previous file with comments | « no previous file | lib/src/digest.dart » ('j') | lib/src/digest_sink.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698