Home
last modified time | relevance | path

Searched refs:enc (Results 1 – 10 of 10) sorted by relevance

/mcuboot-2.7.6/sim/
DCargo.toml18 enc-rsa = ["mcuboot-sys/enc-rsa"]
19 enc-aes256-rsa = ["mcuboot-sys/enc-aes256-rsa"]
20 enc-kw = ["mcuboot-sys/enc-kw"]
21 enc-aes256-kw = ["mcuboot-sys/enc-aes256-kw"]
22 enc-ec256 = ["mcuboot-sys/enc-ec256"]
23 enc-ec256-mbedtls = ["mcuboot-sys/enc-ec256-mbedtls"]
24 enc-aes256-ec256 = ["mcuboot-sys/enc-aes256-ec256"]
25 enc-x25519 = ["mcuboot-sys/enc-x25519"]
26 enc-aes256-x25519 = ["mcuboot-sys/enc-aes256-x25519"]
/mcuboot-2.7.6/sim/mcuboot-sys/
DCargo.toml39 enc-rsa = []
42 enc-aes256-rsa = []
45 enc-kw = []
48 enc-aes256-kw = []
51 enc-ec256 = []
54 enc-aes256-ec256 = []
57 enc-ec256-mbedtls = []
60 enc-x25519 = []
63 enc-aes256-x25519 = []
/mcuboot-2.7.6/scripts/imgtool/keys/
Ded25519.py88 enc = serialization.NoEncryption()
90 enc = serialization.BestAvailableEncryption(passwd)
94 encryption_algorithm=enc)
Dx25519.py90 enc = serialization.NoEncryption()
92 enc = serialization.BestAvailableEncryption(passwd)
96 encryption_algorithm=enc)
Decdsa.py136 enc = serialization.NoEncryption()
138 enc = serialization.BestAvailableEncryption(passwd)
142 encryption_algorithm=enc)
Drsa.py149 enc = serialization.NoEncryption()
151 enc = serialization.BestAvailableEncryption(passwd)
155 encryption_algorithm=enc)
/mcuboot-2.7.6/boot/bootutil/src/
Dencrypted.c728 struct enc_key_data *enc; in boot_encrypt() local
751 enc = &enc_state[rc]; in boot_encrypt()
752 assert(enc->valid == 1); in boot_encrypt()
753 bootutil_aes_ctr_encrypt(&enc->aes_ctr, nonce, buf, sz, blk_off, buf); in boot_encrypt()
Dbootutil_priv.h222 struct enc_key_data enc[BOOT_IMAGE_NUMBER][BOOT_NUM_SLOTS]; member
329 #define BOOT_CURR_ENC(state) ((state)->enc[BOOT_CURR_IMG(state)])
/mcuboot-2.7.6/sim/src/
Dimage.rs1361 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable
1362 dev.read(offset, &mut enc).unwrap(); in install_image()
1364 enc_copy = Some(enc); in install_image()
1394 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable
1395 dev.read(offset, &mut enc).unwrap(); in install_image()
1397 enc_copy = Some(enc); in install_image()
/mcuboot-2.7.6/boot/cypress/
DMakefile46 ENC_KEY_FILE ?= enc-ec256-pub