GithubHelp home page GithubHelp logo

Comments (7)

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024
To do that, I would probably extend WordArray to create a new TypedWordArray 
type that we could customize. And I'd probably keep that definition in a 
separate component file rather than in the core since it wouldn't be 
cross-browser.

In fact, since JavaScript is loosely typed, you should be able to pass 
WordArray a typed array, and it would just use it and continue on as normal. 
You may run into problems, however, when the library tries to use the standard 
array methods, such as push, slice and splice. Something to keep in mind if you 
decide to toy with the idea.

Original comment by Jeff.Mott.OR on 22 Aug 2012 at 10:00

from crypto-js.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024

Original comment by Jeff.Mott.OR on 22 Aug 2012 at 10:00

  • Added labels: Type-Enhancement
  • Removed labels: Type-Defect

from crypto-js.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024

Original comment by Jeff.Mott.OR on 22 Aug 2012 at 10:01

  • Changed state: Duplicate

from crypto-js.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024

Original comment by Jeff.Mott.OR on 22 Aug 2012 at 10:02

  • Changed state: New

from crypto-js.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024
I like the second idea of just having WordArray be able to accept an 
ArrayBuffer.  That seems like the most natural fit for users of the library.

However, my thinking was to actually extract the data out of the ArrayBuffer, 
into the WordArray words member.  Since this member is accessed directly in the 
library, this seems like the only real option without significant surgery.

Doing the ArrayBuffer <-> WordArray.words conversions won't be particularly 
fast, but they'll at least be convenient for users of the service.

Thoughts?

Original comment by [email protected] on 23 Aug 2012 at 12:54

from crypto-js.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024
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.

Original comment by Jeff.Mott.OR on 7 Jan 2013 at 1:55

  • Changed state: Fixed

from crypto-js.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 28, 2024
This is awesome!  Thank you.

Original comment by [email protected] on 7 Jan 2013 at 6:46

from crypto-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.