aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/crypt/sha1_perf.html
diff options
context:
space:
mode:
Diffstat (limited to 'contexts/data/lib/closure-library/closure/goog/crypt/sha1_perf.html')
-rw-r--r--contexts/data/lib/closure-library/closure/goog/crypt/sha1_perf.html62
1 files changed, 0 insertions, 62 deletions
diff --git a/contexts/data/lib/closure-library/closure/goog/crypt/sha1_perf.html b/contexts/data/lib/closure-library/closure/goog/crypt/sha1_perf.html
deleted file mode 100644
index f2fe75c..0000000
--- a/contexts/data/lib/closure-library/closure/goog/crypt/sha1_perf.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<!--
-Copyright 2011 The Closure Library Authors. All Rights Reserved.
-
-Use of this source code is governed by the Apache License, Version 2.0.
-See the COPYING file for details.
-
--->
-<head>
-<meta http-equiv="X-UA-Compatible" content="IE=edge">
-<title>Closure Performance Tests - goog.crypt.Sha1</title>
-<link rel="stylesheet" type="text/css" href="../testing/performancetable.css"/>
-<script src="../base.js"></script>
-<script>
- goog.require('goog.crypt.Sha1');
- goog.require('goog.testing.PerformanceTable');
- goog.require('goog.testing.PseudoRandom');
- goog.require('goog.testing.jsunit');
-</script>
-</head>
-<body>
-<h1>Closure Performance Tests - goog.crypt.Sha1</h1>
-<p>
-<strong>User-agent:</strong>
-<script>document.write(navigator.userAgent);</script>
-</p>
-<div id="perfTable"></div>
-<hr>
-<script>
-
-var table = new goog.testing.PerformanceTable(goog.dom.getElement('perfTable'));
-
-var MESSAGE_LENGTH_FULL = 10000002;
-var MESSAGE_LENGTH_SHORT = 1000002;
-
-function testHashing() {
- var bytes = [];
- var randomMock = new goog.testing.PseudoRandom(0, true);
- for (var i = 0; i < MESSAGE_LENGTH_FULL / 2; ++i) {
- bytes.push(Math.floor(Math.random() * 0x100));
- }
- randomMock.uninstall();
-
- table.run(function() {
- var sha1 = new goog.crypt.Sha1();
- sha1.update(bytes, MESSAGE_LENGTH_SHORT / 2);
- sha1.update(bytes, MESSAGE_LENGTH_SHORT / 2);
- var hash = sha1.digest();
- }, 'SHA1 hash of ' + Math.round(MESSAGE_LENGTH_SHORT/1000000) + ' Mbytes');
-
- table.run(function() {
- var sha1 = new goog.crypt.Sha1();
- sha1.update(bytes);
- sha1.update(bytes);
- var hash = sha1.digest();
- }, 'SHA1 hash of ' + Math.round(MESSAGE_LENGTH_FULL/1000000) + ' Mbytes');
-}
-
-</script>
-</body>
-</html>