Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Checking #273

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
ac45196
workflow file to build app using Grunt
kunnapool Feb 24, 2022
7130af6
update env name
kunnapool Feb 24, 2022
903a431
added $ to matrix mapping
kunnapool Feb 24, 2022
3704355
Delete build-with-grunt.yml
kunnapool Feb 24, 2022
4e42fbe
github workflow: build app with Grunt
kunnapool Feb 24, 2022
cbc94a2
lock file
kunnapool Feb 25, 2022
ac3b74c
Merge pull request #1 from kunnapool/add-workflow
kunnapool Feb 25, 2022
d8e94fc
fixed dirctory name with 's'
kunnapool Feb 25, 2022
f5b737b
Merge pull request #4 from kunnapool/fix-workflow-dir-name
kunnapool Feb 25, 2022
84d007d
separate npm install and grunt
kunnapool Feb 25, 2022
9012510
grunt path
kunnapool Feb 25, 2022
c8b86a9
Merge pull request #5 from kunnapool/workflow-errors
kunnapool Feb 25, 2022
949257d
installed and ran prettier
kunnapool Feb 25, 2022
3f75e5e
Merge pull request #6 from kunnapool/install-and-run-prettier
kunnapool Feb 25, 2022
3b4bddc
tests and lint checks
kunnapool Feb 25, 2022
5fae543
Merge pull request #7 from kunnapool/tests-and-lint
kunnapool Feb 25, 2022
9fc91b7
fix lint issues
kunnapool Feb 25, 2022
6a14468
Merge pull request #15 from kunnapool/fix-test-errors
kunnapool Feb 25, 2022
ce2a30f
fix prettier errors
kunnapool Feb 25, 2022
18e4749
Merge pull request #16 from kunnapool/fix-tests-prettier
kunnapool Feb 25, 2022
9f8c2b9
Allow prettier/lint errors to fail (#17)
kunnapool Feb 25, 2022
3b229af
Refactor checkLength functionality into function (#29)
kunnapool Mar 18, 2022
ae5b85a
removed assignment inside ternary operator (#30)
kunnapool Mar 18, 2022
5dd9a20
refactor variable name (#32)
ivandenys Mar 18, 2022
be9543b
fixed context binding issue (#33)
kunnapool Mar 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixed context binding issue (#33)
  • Loading branch information
kunnapool authored Mar 19, 2022
commit be9543bea0624cac3d2373cab556d9d76d713be3
3 changes: 2 additions & 1 deletion lib/elliptic/ec/signature.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ function getLength(buf, p) {
}

var val = 0;
for (var i = 0, off = p.place; i < octetLen; i++, off++) {
var off = p.place;
for (var i = 0; i < octetLen; i++, off++) {
val <<= 8;
val |= buf[off];
val >>>= 0;
Expand Down