tauri-plugin-secure-element-api 0.1.0-beta.2 → 0.1.0-beta.4
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/README.md +1 -2
- package/dist-js/index.d.ts +0 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ yarn add tauri-plugin-secure-element-api
|
|
|
27
27
|
|
|
28
28
|
```toml
|
|
29
29
|
[dependencies]
|
|
30
|
-
tauri-plugin-secure-element = "
|
|
30
|
+
tauri-plugin-secure-element = "4"
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
## Setup
|
|
@@ -205,7 +205,6 @@ Generates a new secure key in the device's secure element.
|
|
|
205
205
|
interface GenerateSecureKeyResult {
|
|
206
206
|
publicKey: string;
|
|
207
207
|
keyName: string;
|
|
208
|
-
hardwareBacking: "secureEnclave" | "strongBox" | "tee";
|
|
209
208
|
}
|
|
210
209
|
```
|
|
211
210
|
|
package/dist-js/index.d.ts
CHANGED
|
@@ -8,8 +8,6 @@ export type HardwareBacking = "secureEnclave" | "strongBox" | "tee" | "ngc" | "t
|
|
|
8
8
|
export interface GenerateSecureKeyResult {
|
|
9
9
|
publicKey: string;
|
|
10
10
|
keyName: string;
|
|
11
|
-
/** The type of hardware backing used for this key */
|
|
12
|
-
hardwareBacking: HardwareBacking;
|
|
13
11
|
}
|
|
14
12
|
export declare function generateSecureKey(keyName: string, authMode?: AuthenticationMode): Promise<GenerateSecureKeyResult>;
|
|
15
13
|
export declare function listKeys(keyName?: string, publicKey?: string): Promise<KeyInfo[]>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tauri-plugin-secure-element-api",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.4",
|
|
4
4
|
"description": "Tauri plugin for secure element use on iOS (Secure Enclave) and Android (Strongbox and TEE).",
|
|
5
5
|
"repository": "https://github.com/dkackman/tauri-plugin-secure-element",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"lint:kotlin": "ktlint 'android/src/**/*.kt'"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@tauri-apps/api": "^2.
|
|
59
|
+
"@tauri-apps/api": "^2.10.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@naturalcycles/ktlint": "^1.16.0",
|