Home
last modified time | relevance | path

Searched refs:UUID (Results 1 – 25 of 62) sorted by relevance

123

/optee_rust/examples/diffie_hellman-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/digest-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/hello_world-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/time-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/secure_storage-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/random-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/authentication-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/big_int-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/supp_plugin-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../ta_uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/tcp_client-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/message_passing_interface-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/hotp-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/serde-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/aes-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/acipher-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/udp_socket-rs/ta/
A DMakefile20 UUID ?= $(shell cat "../uuid.txt") macro
49 …@$(SIGN) --uuid $(UUID) --key $(TA_SIGN_KEY) --in $(OUT_DIR)/stripped_ta --out $(OUT_DIR)/$(UUID).…
50 @echo "SIGN => ${UUID}"
/optee_rust/examples/tcp_client-rs/host/src/
A Dmain.rs20 use proto::{UUID, Command};
30 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/time-rs/host/src/
A Dmain.rs20 use proto::{Command, UUID};
32 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/random-rs/host/src/
A Dmain.rs19 use proto::{Command, UUID};
40 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/hello_world-rs/host/src/
A Dmain.rs20 use proto::{UUID, Command};
38 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/serde-rs/host/src/
A Dmain.rs20 use proto::{UUID, Command};
45 Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/udp_socket-rs/host/src/
A Dmain.rs20 use proto::{UUID, Command};
35 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/big_int-rs/host/src/
A Dmain.rs20 use proto::{Command, UUID};
45 let uuid = Uuid::parse_str(UUID).unwrap(); in main()
/optee_rust/examples/tcp_client-rs/proto/src/
A Dlib.rs33 pub const UUID: &str = &include_str!(concat!(env!("OUT_DIR"), "/uuid.txt")); consts
/optee_rust/examples/time-rs/proto/src/
A Dlib.rs33 pub const UUID: &str = &include_str!(concat!(env!("OUT_DIR"), "/uuid.txt")); consts

Completed in 13 milliseconds

123