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

Unified Diff: lib/src/hash_utils.dart

Issue 1350913002: Run the formatter over crypto. (Closed) Base URL: git@github.com:dart-lang/crypto.git@master
Patch Set: Fix a missing value. Created 5 years, 3 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 | « lib/src/crypto_utils.dart ('k') | lib/src/hmac.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/hash_utils.dart
diff --git a/lib/src/hash_utils.dart b/lib/src/hash_utils.dart
index 12bcb0dc78db2edb206be2a041ad2b8d1a2ccaed..5fd8b075fdcc02d4f95a6c553b44724f5683a30c 100644
--- a/lib/src/hash_utils.dart
+++ b/lib/src/hash_utils.dart
@@ -31,9 +31,8 @@ abstract class _HashBase implements Hash {
List<int> _pendingData;
bool _digestCalled = false;
- _HashBase(int chunkSizeInWords,
- int digestSizeInWords,
- bool this._bigEndianWords)
+ _HashBase(
+ int chunkSizeInWords, int digestSizeInWords, bool this._bigEndianWords)
: _pendingData = [],
_currentChunk = new Uint32List(chunkSizeInWords),
_h = new Uint32List(digestSizeInWords),
« no previous file with comments | « lib/src/crypto_utils.dart ('k') | lib/src/hmac.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698