Closed GoogleCodeExporter closed 8 years ago
Hi, Oliver. Unfortunately the typed arrays are not cross-browser compatible.
And in fact the browser most in need of a speed boost is the same browser that
doesn't support the typed arrays.
Original comment by Jeff.Mott.OR
on 15 Jun 2012 at 7:28
Hi Jeff
Sure they are not universally available but since you already got the
abstraction for WordArray.create it should be possible to leverage typed arrays
when available.
Original comment by oli...@weichhold.com
on 15 Jun 2012 at 8:00
Original comment by Jeff.Mott.OR
on 21 Jun 2012 at 9:17
Issue 46 has been merged into this issue.
Original comment by Jeff.Mott.OR
on 22 Aug 2012 at 10:01
The latest release includes the ability to create WordArrays from typed arrays.
You'll need to include an additional component -- lib-typedarrays.
<script
src="http://crypto-js.googlecode.com/svn/tags/3.1/build/components/core.js"></sc
ript>
<script
src="http://crypto-js.googlecode.com/svn/tags/3.1/build/components/lib-typedarra
ys.js"></script>
<script>
var wordArray = CryptoJS.lib.WordArray.create(uint8View);
</script>
You can create a WordArray from any of the typed array views -- Int8Array,
Int16Array, etc. -- or from an ArrayBuffer, or from a DataView.
This is likely as far as this library will go with typed arrays until they
become more cross browser compatible.
Original comment by Jeff.Mott.OR
on 7 Jan 2013 at 2:00
Original issue reported on code.google.com by
oli...@weichhold.com
on 15 Jun 2012 at 7:01