Giter Site home page Giter Site logo

Load with requirejs about cryptojs HOT 4 OPEN

gwjjeff avatar gwjjeff commented on August 20, 2024
Load with requirejs

from cryptojs.

Comments (4)

njoyard avatar njoyard commented on August 20, 2024

It is, but you have to wrap the root cryptojs file as described here

from cryptojs.

jcalonso avatar jcalonso commented on August 20, 2024

Thanks for that, I ended up doing something like this:
This is for AES module.

require.config({
    modules: [
        {
            name: 'main'
        }
    ],
    paths: {
        'crypto': "../components/cryptojs/lib/Crypto",
        'crypto.BlockModes': "../components/cryptojs/lib/BlockModes",
        'crypto.PBKDF2': "../components/cryptojs/lib/PBKDF2",
        'crypto.HMAC': "../components/cryptojs/lib/HMAC",
        'crypto.SHA1': "../components/cryptojs/lib/SHA1",
        'crypto.AES': "../components/cryptojs/lib/AES"
    },
    shim: {
        'crypto.AES': ['crypto','crypto.BlockModes','crypto.PBKDF2','crypto.HMAC','crypto.SHA1']
    }

});

require([
    'crypto.AES'
], function () {

    Crypto.AES.encrypt('password', 'passphrase');
});

from cryptojs.

xenoterracide avatar xenoterracide commented on August 20, 2024

are you sure there aren't changes that could be made to this that could make it simply work by using packages support in requirejs http://requirejs.org/docs/api.html#packages ? without breaking commonjs support?

from cryptojs.

xenoterracide avatar xenoterracide commented on August 20, 2024
paths: {
    'crypto'               :'/bower_components/cryptojs/lib/Crypto',
    'crypto.MD5'      :'/bower_components/cryptojs/lib/MD5',
},
shim: {
    'crypto.MD5'      :['crypto'],
},
// ... in my controller module (note:angular bits are simply to give such users an idea
define(['crypto.MD5', 'angular'], function() { return [ '$scope',   function ( $scope ) {
         var digest = Crypto.MD5( $scope.code ).toString();
     }];
 });

I think it's probably important not to try to use Crypto in the "requirejs name" because it will override the global name export or somethin'. Also usage is based on that global name not the require name.

from cryptojs.

Related Issues (13)

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.