Skip to content

Commit e1bde8a

Browse files
committed
use manually built jsrsasign
1 parent b451417 commit e1bde8a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"chai": "^3.5.0",
4040
"express": "^4.13.4",
4141
"gulp": "^3.9.1",
42+
"gulp-concat": "^2.6.1",
4243
"mocha": "^2.4.5",
4344
"open": "0.0.5",
4445
"webpack": "^1.12.14",

src/JoseUtil.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
33

4-
import { jws, KEYUTIL as KeyUtil, X509, crypto, hextob64u, b64tohex } from 'jsrsasign';
4+
import { jws, KEYUTIL as KeyUtil, X509, crypto, hextob64u, b64tohex } from '../jsrsasign/dist/jsrsasign.js';
5+
//import { jws, KEYUTIL as KeyUtil, X509, crypto, hextob64u, b64tohex } from 'jsrsasign';
56
import Log from './Log';
67

78
const AllowedSigningAlgs = ['RS256', 'RS384', 'RS512', 'PS256', 'PS384', 'PS512', 'ES256', 'ES384', 'ES512'];

0 commit comments

Comments
 (0)