Chromium Code Reviews| Index: lib/crypto.dart |
| diff --git a/lib/crypto.dart b/lib/crypto.dart |
| index 892626fcf588d56b55daf3a88bc7aa87a28d2b32..2cf07ac663bb5994a952269501d528e7c5666e84 100644 |
| --- a/lib/crypto.dart |
| +++ b/lib/crypto.dart |
| @@ -1,4 +1,5 @@ |
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| + |
|
Lasse Reichstein Nielsen
2015/05/29 14:15:41
Extra line doesn't belong here.
Alexander Ivanov
2015/06/03 09:14:57
Done.
|
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| @@ -10,6 +11,7 @@ library crypto; |
| import 'dart:math'; |
| import 'dart:typed_data'; |
| +import 'dart:convert'; |
| part 'src/crypto_utils.dart'; |
| part 'src/hash_utils.dart'; |
| @@ -17,6 +19,7 @@ part 'src/hmac.dart'; |
| part 'src/md5.dart'; |
| part 'src/sha1.dart'; |
| part 'src/sha256.dart'; |
| +part 'src/base64.dart'; |
| /** |
| * Interface for cryptographic hash functions. |