| OLD | NEW |
| 1 ## 1.0.0 |
| 2 |
| 3 * All APIs that were deprecated in 0.9.2 have been removed. No new APIs have |
| 4 been added. Packages that would use 1.0.0 as a lower bound should use 0.9.2 |
| 5 instead—for example, `crypto: ">=0.9.2 <2.0.0"`. |
| 6 |
| 1 ## 0.9.2 | 7 ## 0.9.2 |
| 2 | 8 |
| 3 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert | 9 * `Hash`, `MD5`, `SHA1`, and `SHA256` now implement `Converter`. They convert |
| 4 between `List<int>`s and the new `Digest` class, which represents a hash | 10 between `List<int>`s and the new `Digest` class, which represents a hash |
| 5 digest. The `Converter` APIs—`Hash.convert()` and | 11 digest. The `Converter` APIs—`Hash.convert()` and |
| 6 `Hash.startChunkedConversion`—should be used in preference to the old APIs, | 12 `Hash.startChunkedConversion`—should be used in preference to the old APIs, |
| 7 which are now deprecated. | 13 which are now deprecated. |
| 8 | 14 |
| 9 * `SHA1`, `SHA256`, and `HMAC` have been renamed to `Sha1`, `Sha256`, and | 15 * `SHA1`, `SHA256`, and `HMAC` have been renamed to `Sha1`, `Sha256`, and |
| 10 `Hmac`, respectively. The old names still work, but are deprecated. | 16 `Hmac`, respectively. The old names still work, but are deprecated. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 43 |
| 38 ## 0.9.1 | 44 ## 0.9.1 |
| 39 | 45 |
| 40 * Base64 convert returns an Uint8List | 46 * Base64 convert returns an Uint8List |
| 41 * Base64 codec and encoder can now take an encodePaddingCharacter | 47 * Base64 codec and encoder can now take an encodePaddingCharacter |
| 42 * Implement a Base64 codec similar to codecs in 'dart:convert' | 48 * Implement a Base64 codec similar to codecs in 'dart:convert' |
| 43 | 49 |
| 44 ## 0.9.0 | 50 ## 0.9.0 |
| 45 | 51 |
| 46 * ChangeLog starts here. | 52 * ChangeLog starts here. |
| OLD | NEW |