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

Unified Diff: packages/crypto/lib/src/utils.dart

Issue 2990843002: Removed fixed dependencies (Closed)
Patch Set: Created 3 years, 5 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 | « packages/crypto/lib/src/sha256.dart ('k') | packages/crypto/pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/crypto/lib/src/utils.dart
diff --git a/packages/crypto/lib/src/utils.dart b/packages/crypto/lib/src/utils.dart
new file mode 100644
index 0000000000000000000000000000000000000000..9ac8efc140d34190106e90ce8c4160a41f825114
--- /dev/null
+++ b/packages/crypto/lib/src/utils.dart
@@ -0,0 +1,22 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// 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.
+
+/// A bitmask that limits an integer to 32 bits.
+const mask32 = 0xFFFFFFFF;
+
+/// The number of bits in a byte.
+const bitsPerByte = 8;
+
+/// The number of bytes in a 32-bit word.
+const bytesPerWord = 4;
+
+/// Adds [x] and [y] with 32-bit overflow semantics.
+int add32(int x, int y) => (x + y) & mask32;
+
+/// Bitwise rotates [val] to the left by [shift], obeying 32-bit overflow
+/// semantics.
+int rotl32(int val, int shift) {
+ var modShift = shift & 31;
+ return ((val << modShift) & mask32) | ((val & mask32) >> (32 - modShift));
+}
« no previous file with comments | « packages/crypto/lib/src/sha256.dart ('k') | packages/crypto/pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698