Skip to content

Commit f706bb3

Browse files
committed
chore: update with [email protected]
1 parent ee9388c commit f706bb3

File tree

6 files changed

+116
-61
lines changed

6 files changed

+116
-61
lines changed

Cargo.lock

Lines changed: 58 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ strip = true
1414
opt-level = 's'
1515

1616
[workspace.package]
17-
version = "0.8.12"
17+
version = "0.8.13"
1818
edition = "2021"
1919
repository = "https://github.com/ldclabs/ic-cose"
2020
keywords = ["config", "cbor", "canister", "icp", "encryption"]
@@ -39,7 +39,7 @@ sha3 = "0.10"
3939
num-traits = "0.2"
4040
ic-cdk = "0.18"
4141
ic-cdk-timers = "0.12"
42-
ic-stable-structures = "0.6"
42+
ic-stable-structures = "0.7"
4343
icrc-ledger-types = "0.1"
4444
ic-certification = "3.0"
4545
ic-canister-sig-creation = "1.3"

src/declarations/ic_cose_canister/ic_cose_canister.did

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,8 @@ service : (opt InstallArgs) -> {
176176
admin_remove_allowed_apis : (vec text) -> (Result);
177177
admin_remove_auditors : (vec principal) -> (Result);
178178
admin_remove_managers : (vec principal) -> (Result);
179+
// ecdh_encrypted_cose_key returns a permanent partial KEK encrypted with ECDH.
180+
// It should be used with a local partial key to derive a full KEK.
179181
ecdh_cose_encrypted_key : (SettingPath, ECDHInput) -> (Result_3);
180182
ecdsa_public_key : (opt PublicKeyInput) -> (Result_4) query;
181183
ecdsa_sign : (SignInput) -> (Result_5);

src/ic_cose_canister/ic_cose_canister.did

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,8 @@ service : (opt InstallArgs) -> {
176176
admin_remove_allowed_apis : (vec text) -> (Result);
177177
admin_remove_auditors : (vec principal) -> (Result);
178178
admin_remove_managers : (vec principal) -> (Result);
179+
// ecdh_encrypted_cose_key returns a permanent partial KEK encrypted with ECDH.
180+
// It should be used with a local partial key to derive a full KEK.
179181
ecdh_cose_encrypted_key : (SettingPath, ECDHInput) -> (Result_3);
180182
ecdsa_public_key : (opt PublicKeyInput) -> (Result_4) query;
181183
ecdsa_sign : (SignInput) -> (Result_5);

0 commit comments

Comments
 (0)