jose-browser-runtime
Advanced tools
Comparing version 5.9.0 to 5.9.1
@@ -13,3 +13,3 @@ import fetchJwks from '../runtime/fetch_jwks.js'; | ||
const NAME = 'jose'; | ||
const VERSION = 'v5.9.0'; | ||
const VERSION = 'v5.9.1'; | ||
USER_AGENT = `${NAME}/${VERSION}`; | ||
@@ -16,0 +16,0 @@ } |
@@ -47,3 +47,3 @@ export { compactDecrypt } from './jwe/compact/decrypt'; | ||
export * as base64url from './util/base64url'; | ||
export type { KeyLike, JWK, FlattenedJWSInput, GeneralJWSInput, FlattenedJWS, GeneralJWS, JoseHeaderParameters, JWSHeaderParameters, JWEKeyManagementHeaderParameters, FlattenedJWE, GeneralJWE, JWEHeaderParameters, CritOption, DecryptOptions, EncryptOptions, JWTClaimVerificationOptions, VerifyOptions, SignOptions, JWTPayload, FlattenedDecryptResult, GeneralDecryptResult, CompactDecryptResult, FlattenedVerifyResult, GeneralVerifyResult, CompactVerifyResult, JWTVerifyResult, JWTDecryptResult, ResolvedKey, CompactJWEHeaderParameters, CompactJWSHeaderParameters, JWTHeaderParameters, JSONWebKeySet, CryptoRuntime, GetKeyFunction, } from './types'; | ||
export type { KeyLike, JWK, JWKParameters, JWK_OKP_Public, JWK_OKP_Private, JWK_EC_Public, JWK_EC_Private, JWK_RSA_Public, JWK_RSA_Private, JWK_oct, FlattenedJWSInput, GeneralJWSInput, FlattenedJWS, GeneralJWS, JoseHeaderParameters, JWSHeaderParameters, JWEKeyManagementHeaderParameters, FlattenedJWE, GeneralJWE, JWEHeaderParameters, CritOption, DecryptOptions, EncryptOptions, JWTClaimVerificationOptions, VerifyOptions, SignOptions, JWTPayload, FlattenedDecryptResult, GeneralDecryptResult, CompactDecryptResult, FlattenedVerifyResult, GeneralVerifyResult, CompactVerifyResult, JWTVerifyResult, JWTDecryptResult, ResolvedKey, CompactJWEHeaderParameters, CompactJWSHeaderParameters, JWTHeaderParameters, JSONWebKeySet, CryptoRuntime, GetKeyFunction, } from './types'; | ||
export { default as cryptoRuntime } from './util/runtime'; |
@@ -54,2 +54,4 @@ /** | ||
kid?: string | ||
[propName: string]: unknown | ||
} | ||
@@ -63,2 +65,4 @@ | ||
x: string | ||
[propName: string]: unknown | ||
} | ||
@@ -70,2 +74,4 @@ | ||
d: string | ||
[propName: string]: unknown | ||
} | ||
@@ -81,2 +87,4 @@ | ||
y: string | ||
[propName: string]: unknown | ||
} | ||
@@ -88,2 +96,4 @@ | ||
d: string | ||
[propName: string]: unknown | ||
} | ||
@@ -97,2 +107,4 @@ | ||
n: string | ||
[propName: string]: unknown | ||
} | ||
@@ -120,10 +132,12 @@ | ||
qi: string | ||
[propName: string]: unknown | ||
} | ||
/** | ||
* Convenience interface for oct JSON Web Keys | ||
*/ | ||
/** Convenience interface for oct JSON Web Keys */ | ||
export interface JWK_oct extends JWKParameters { | ||
/** Key Value */ | ||
k: string | ||
[propName: string]: unknown | ||
} | ||
@@ -134,2 +148,10 @@ | ||
* key types are supported. | ||
* | ||
* @see {@link JWK_OKP_Public} | ||
* @see {@link JWK_OKP_Private} | ||
* @see {@link JWK_EC_Public} | ||
* @see {@link JWK_EC_Private} | ||
* @see {@link JWK_RSA_Public} | ||
* @see {@link JWK_RSA_Private} | ||
* @see {@link JWK_oct} | ||
*/ | ||
@@ -136,0 +158,0 @@ export interface JWK extends JWKParameters { |
{ | ||
"name": "jose-browser-runtime", | ||
"version": "5.9.0", | ||
"version": "5.9.1", | ||
"homepage": "https://github.com/panva/jose", | ||
@@ -5,0 +5,0 @@ "repository": "panva/jose", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
615887
13194