Index: lib/crypto/hash_utils.dart |
diff --git a/lib/crypto/hash_utils.dart b/lib/crypto/hash_utils.dart |
index f1e9d52c9404428fdccc7c8ccdc953fc5d80f2e0..904a2b3921b5809de67e46972d6d68cc971cb65f 100644 |
--- a/lib/crypto/hash_utils.dart |
+++ b/lib/crypto/hash_utils.dart |
@@ -132,7 +132,7 @@ class _HashBase implements Hash { |
_pendingData.add(0); |
} |
var lengthInBits = _lengthInBytes * _BITS_PER_BYTE; |
- assert(lengthInBits < Math.pow(2, 32)); |
+ assert(lengthInBits < pow(2, 32)); |
if (_bigEndianWords) { |
_pendingData.addAll(_wordToBytes(0)); |
_pendingData.addAll(_wordToBytes(lengthInBits & _MASK_32)); |