@interop/minimal-cipher 7.5.1 → 7.6.0
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.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The `@interop/minimal-cipher/algorithms` subpath entry: the low-level
|
|
3
|
+
* key-management building blocks of the `ECDH-ES+A256KW` recipient algorithm,
|
|
4
|
+
* for callers that wrap/unwrap keys compatibly with `Cipher` (identical bytes
|
|
5
|
+
* for the same inputs) without going through a full JWE envelope.
|
|
6
|
+
*/
|
|
7
|
+
export { deriveKey } from './ecdhkdf.js';
|
|
8
|
+
export { createKek } from './aeskw.js';
|
|
9
|
+
export type { KEK } from '../types.js';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/algorithms/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA;AACtC,YAAY,EAAE,GAAG,EAAE,MAAM,aAAa,CAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The `@interop/minimal-cipher/algorithms` subpath entry: the low-level
|
|
3
|
+
* key-management building blocks of the `ECDH-ES+A256KW` recipient algorithm,
|
|
4
|
+
* for callers that wrap/unwrap keys compatibly with `Cipher` (identical bytes
|
|
5
|
+
* for the same inputs) without going through a full JWE envelope.
|
|
6
|
+
*/
|
|
7
|
+
export { deriveKey } from './ecdhkdf.js';
|
|
8
|
+
export { createKek } from './aeskw.js';
|
|
9
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/algorithms/index.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAA;AACxC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@interop/minimal-cipher",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.6.0",
|
|
4
4
|
"description": "Minimal encryption/decryption JWE library.",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"type": "module",
|
|
@@ -10,6 +10,12 @@
|
|
|
10
10
|
"react-native": "./dist/index.js",
|
|
11
11
|
"import": "./dist/index.js",
|
|
12
12
|
"default": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./algorithms": {
|
|
15
|
+
"types": "./dist/algorithms/index.d.ts",
|
|
16
|
+
"react-native": "./dist/algorithms/index.js",
|
|
17
|
+
"import": "./dist/algorithms/index.js",
|
|
18
|
+
"default": "./dist/algorithms/index.js"
|
|
13
19
|
}
|
|
14
20
|
},
|
|
15
21
|
"module": "dist/index.js",
|