@atproto/jwk-jose 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/jose-key.d.ts +1 -1
- package/package.json +2 -2
- package/tsconfig.build.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
package/dist/jose-key.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare class JoseKey<J extends Jwk = Jwk> extends Key<J> {
|
|
|
9
9
|
* provide the following method to ensure the `alg` is always set. We also
|
|
10
10
|
* take the opportunity to ensure that the `alg` is compatible with this key.
|
|
11
11
|
*/
|
|
12
|
-
protected getKeyObj(alg: string): Promise<KeyLike | Uint8Array
|
|
12
|
+
protected getKeyObj(alg: string): Promise<KeyLike | Uint8Array<ArrayBufferLike>>;
|
|
13
13
|
createJwt(header: JwtHeader, payload: JwtPayload): Promise<SignedJwt>;
|
|
14
14
|
verifyJwt<C extends string = never>(token: SignedJwt, options?: VerifyOptions<C>): Promise<VerifyResult<C>>;
|
|
15
15
|
static generateKeyPair(allowedAlgos?: readonly string[], options?: GenerateKeyPairOptions): Promise<GenerateKeyPairResult<KeyLike>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atproto/jwk-jose",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "`jose` based implementation of @atproto/jwk Key's",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"jose": "^5.2.0",
|
|
28
|
-
"@atproto/jwk": "0.1.
|
|
28
|
+
"@atproto/jwk": "0.1.5"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"typescript": "^5.6.3"
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.ts","./src/jose-key.ts","./src/util.ts"],"version":"5.
|
|
1
|
+
{"root":["./src/index.ts","./src/jose-key.ts","./src/util.ts"],"version":"5.8.2"}
|