This is an automated email from the ASF dual-hosted git repository.
ivila pushed a change to branch main
in repository
https://gitbox.apache.org/repos/asf/incubator-teaclave-trustzone-sdk.git
from 0646616 docs: clarify contribution policy for DCO tags and CLA
requirements
new b053909 optee-utee: object: split codes into separate files
new c14632c optee-utee: add optee-utee-mock
new d1d4065 optee-utee: object: refactor Object
new 2cbdb2d crates & examples: fix compilation errors.
new 4d3c7f0 optee-utee: object: update doc
new 7bd5988 crates: secure_db: fix strange `write permission fault`
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
crates/secure_db/Cargo.toml | 3 +-
crates/secure_db/src/backend.rs | 5 +-
crates/secure_db/src/db.rs | 7 +-
examples/acipher-rs/ta/src/main.rs | 2 +-
examples/aes-rs/ta/src/main.rs | 4 +-
examples/authentication-rs/ta/src/main.rs | 2 +-
examples/diffie_hellman-rs/ta/src/main.rs | 2 +-
examples/hotp-rs/ta/src/main.rs | 2 +-
examples/secure_storage-rs/ta/src/main.rs | 8 +-
examples/signature_verification-rs/ta/src/main.rs | 2 +-
optee-utee/Cargo.toml | 1 +
.../optee-utee-mock}/Cargo.toml | 13 +-
.../optee-utee-mock}/src/lib.rs | 12 +-
optee-utee/optee-utee-mock/src/object.rs | 231 +++
optee-utee/src/crypto_op.rs | 31 +-
optee-utee/src/object.rs | 1541 --------------------
optee-utee/src/object/attribute.rs | 215 +++
optee-utee/src/object/enum_handle.rs | 105 ++
optee-utee/src/object/generic_object.rs | 174 +++
optee-utee/src/{net => object}/mod.rs | 28 +-
optee-utee/src/object/object_define.rs | 128 ++
optee-utee/src/object/object_handle.rs | 144 ++
optee-utee/src/object/object_info.rs | 78 +
optee-utee/src/object/persistent_object.rs | 645 ++++++++
optee-utee/src/object/transient_object.rs | 433 ++++++
25 files changed, 2214 insertions(+), 1602 deletions(-)
copy {optee-teec/optee-teec-sys => optee-utee/optee-utee-mock}/Cargo.toml (82%)
copy {examples/mnist-rs/ta/common => optee-utee/optee-utee-mock}/src/lib.rs
(86%)
create mode 100644 optee-utee/optee-utee-mock/src/object.rs
delete mode 100644 optee-utee/src/object.rs
create mode 100644 optee-utee/src/object/attribute.rs
create mode 100644 optee-utee/src/object/enum_handle.rs
create mode 100644 optee-utee/src/object/generic_object.rs
copy optee-utee/src/{net => object}/mod.rs (63%)
create mode 100644 optee-utee/src/object/object_define.rs
create mode 100644 optee-utee/src/object/object_handle.rs
create mode 100644 optee-utee/src/object/object_info.rs
create mode 100644 optee-utee/src/object/persistent_object.rs
create mode 100644 optee-utee/src/object/transient_object.rs
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]