crypto icon indicating copy to clipboard operation
crypto copied to clipboard

JavaScript implementations of standard and secure cryptographic algorithms.

Results 12 crypto issues
Sort by recently updated
recently updated
newest added

As mentioned in #2, this module is named the same as [Node's built-in crypto module](https://nodejs.org/api/crypto.html), which makes it look like it has [amazing NPM stats](https://www.npmjs.com/package/crypto) (nearly half a million downloads...

This package shadows a package in the NodeJS standard lib. Seeing as it is also 5+ years old with no changes and an essentially empty codebase, it should be marked...

``` handleLogin: function() { if (this.userid == '' || this.password == '') return; let params = { userid: this.userid, password: md5.update(this.password).digest('hex') }; debugger; }, ``` ``` browser.js?7e92:19 Uncaught TypeError: Cannot...

specifying the type and URL is deprecated: https://docs.npmjs.com/files/package.json#license http://npm1k.org/

I can't use a module in our app without an appropriate license.

I used the crypto library to create a private Key and sign data. My code is following: ``` var KEY_START = '-----BEGIN EC PRIVATE KEY-----\n'; var KEY_END = '\n-----END EC...

When the user try to authenticate the first time and fail/success, then, try again/logout, the server is stopped and throw this error: crypto.js:279 var ret = this._binding.update(data, inputEncoding); ^ TypeError:...

I'm npm install crypto in react native project ,but it not working. ![image](https://cloud.githubusercontent.com/assets/15081830/13574177/fae2e49a-e4bd-11e5-8cbf-d10518af4efb.png)

Am I doing this right? ``` var cryptograph = require('crypto'); var hashFunction = cryptograph.createHash("md5"); // helper.printLog() is just a helper for nicer console.log view helper.printLog(hashFunction); ``` response that I get...