Skip to content

Commit

Permalink
fix: fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zensh committed Sep 5, 2024
1 parent a8bbb40 commit 33719c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ A imaginative use case is serving as a state persistence service for enclaves ru

## Features

- [ ] Supports message signing and configuration data encryption (COSE, Threshold ECDSA, Threshold Schnorr, VetKeys).
- [ ] Organizes configuration data by namespaces and client subjects with fine-grained access control.
- [x] Supports message signing and configuration data encryption (COSE, Threshold ECDSA, Threshold Schnorr, VetKeys (TODO)).
- [x] Organizes configuration data by namespaces and client subjects with fine-grained access control.
- [ ] Supports horizontal scalability, WASM upgrade management, and Cycles recharge management.
- [ ] Serve as a state persistence service for enclaves, aiding in loading and persisting confidential data during startup and runtime.
- [ ] Can be used as a cluster management center for both Web3 and Web2 services.
Expand Down
11 changes: 7 additions & 4 deletions src/ic_cose_canister/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@

## Features

- [x] Supports large file uploads and downloads through file sharding, concurrent high-speed uploads, resumable uploads, and segmented downloads.
- [x] Provides data verification based on ICP's verification mechanisms to ensure file integrity during reading.
- [x] Supports file directory tree.
- [x] Access control with permissions for public, private, read-only, and write-only for files, folders, and buckets.
- [x] Supports message signing and configuration data encryption (COSE, Threshold ECDSA, Threshold Schnorr, VetKeys (TODO)).
- [x] Organizes configuration data by namespaces and client subjects with fine-grained access control.
- [ ] Supports horizontal scalability, WASM upgrade management, and Cycles recharge management.
- [ ] Serve as a state persistence service for enclaves, aiding in loading and persisting confidential data during startup and runtime.
- [ ] Can be used as a cluster management center for both Web3 and Web2 services.

## Candid API

Expand Down Expand Up @@ -97,6 +98,8 @@ dfx canister call ic_cose_canister admin_create_namespace "(record {
desc = null;
max_payload_size = opt 1_000_000;
managers = vec {principal \"$MYID\"};
auditors = {};
users = {};
})"

dfx canister call ic_cose_canister admin_list_namespace "(null, null)"
Expand Down

0 comments on commit 33719c0

Please sign in to comment.