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

Unified Diff: lib/crypto.dart

Issue 1159093002: Implement a Base64 codec (Closed) Base URL: https://github.com/dart-lang/crypto.git@master
Patch Set: Address review comments Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/src/base64.dart » ('j') | lib/src/base64.dart » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « no previous file | lib/src/base64.dart » ('j') | lib/src/base64.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698