| OLD | NEW |
| (Empty) | |
| 1 # Library of cryptographic functions for Dart |
| 2 |
| 3 A set of cryptographic functions implemented in pure Dart. |
| 4 |
| 5 * MD5 |
| 6 * SHA1 |
| 7 * SHA265 |
| 8 * HMAC |
| 9 * Converting a list of bytes into a hex string |
| 10 * Converting a list of bytes into a base64-encoded string. |
| 11 * Converting a Base 64 encoded String into list of bytes. |
| 12 |
| 13 ## Test status |
| 14 |
| 15 See http://build.chromium.org/p/client.dart.packages/console |
| 16 |
| 17 The individual builders are at: |
| 18 |
| 19 http://build.chromium.org/p/client.dart.packages/builders/packages-windows-crypt
o |
| 20 http://build.chromium.org/p/client.dart.packages/builders/packages-linux-crypto |
| 21 http://build.chromium.org/p/client.dart.packages/builders/packages-mac-crypto |
| 22 |
| 23 ## Disclaimer |
| 24 |
| 25 Support for this library is given as _best effort_. |
| 26 |
| 27 This library has not been reviewed or vetted by security professionals. |
| 28 |
| 29 ## Features and bugs |
| 30 |
| 31 Please file feature requests and bugs at the [issue tracker][tracker]. |
| 32 |
| 33 [tracker]: https://github.com/dart-lang/crypto/issues |
| OLD | NEW |