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

Unified Diff: lib/crypto.dart

Issue 1159093002: Implement a Base64 codec (Closed) Base URL: https://github.com/dart-lang/crypto.git@master
Patch Set: Remove newlines after dart-docs 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') | no next file with comments »
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..eb2905a7e2dfb10abf6d28ba5b8ed34c20a37835 100644
--- a/lib/crypto.dart
+++ b/lib/crypto.dart
@@ -10,6 +10,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 +18,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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698