Skip to content

Commit 71e4e8e

Browse files
committed
6.5.1
1 parent 7ec66ff commit 71e4e8e

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

dist/elliptic.js

+9-8
Original file line numberDiff line numberDiff line change
@@ -1437,8 +1437,9 @@ Point.prototype.getY = function getY() {
14371437

14381438
Point.prototype.mul = function mul(k) {
14391439
k = new BN(k, 16);
1440-
1441-
if (this._hasDoubles(k))
1440+
if (this.isInfinity())
1441+
return this;
1442+
else if (this._hasDoubles(k))
14421443
return this.curve._fixedNafMul(this, k);
14431444
else if (this.curve.endo)
14441445
return this.curve._endoWnafMulAdd([ this ], [ k ]);
@@ -8796,7 +8797,7 @@ utils.encode = function encode(arr, enc) {
87968797
},{}],35:[function(require,module,exports){
87978798
module.exports={
87988799
"name": "elliptic",
8799-
"version": "6.5.0",
8800+
"version": "6.5.1",
88008801
"description": "EC cryptography",
88018802
"main": "lib/elliptic.js",
88028803
"files": [
@@ -8828,19 +8829,19 @@ module.exports={
88288829
"homepage": "https://github.com/indutny/elliptic",
88298830
"devDependencies": {
88308831
"brfs": "^1.4.3",
8831-
"coveralls": "^2.11.3",
8832-
"grunt": "^0.4.5",
8832+
"coveralls": "^3.0.4",
8833+
"grunt": "^1.0.4",
88338834
"grunt-browserify": "^5.0.0",
88348835
"grunt-cli": "^1.2.0",
88358836
"grunt-contrib-connect": "^1.0.0",
88368837
"grunt-contrib-copy": "^1.0.0",
88378838
"grunt-contrib-uglify": "^1.0.1",
88388839
"grunt-mocha-istanbul": "^3.0.1",
8839-
"grunt-saucelabs": "^8.6.2",
8840+
"grunt-saucelabs": "^9.0.1",
88408841
"istanbul": "^0.4.2",
8841-
"jscs": "^2.9.0",
8842+
"jscs": "^3.0.7",
88428843
"jshint": "^2.6.0",
8843-
"mocha": "^2.1.0"
8844+
"mocha": "^6.1.4"
88448845
},
88458846
"dependencies": {
88468847
"bn.js": "^4.4.0",

dist/elliptic.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elliptic",
3-
"version": "6.5.0",
3+
"version": "6.5.1",
44
"description": "EC cryptography",
55
"main": "lib/elliptic.js",
66
"files": [

0 commit comments

Comments
 (0)