Home
last modified time | relevance | path

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

/mcuboot-3.7.0/sim/
DCargo.toml20 enc-rsa = ["mcuboot-sys/enc-rsa"]
21 enc-aes256-rsa = ["mcuboot-sys/enc-aes256-rsa"]
22 enc-kw = ["mcuboot-sys/enc-kw"]
23 enc-aes256-kw = ["mcuboot-sys/enc-aes256-kw"]
24 enc-ec256 = ["mcuboot-sys/enc-ec256"]
25 enc-ec256-mbedtls = ["mcuboot-sys/enc-ec256-mbedtls"]
26 enc-aes256-ec256 = ["mcuboot-sys/enc-aes256-ec256"]
27 enc-x25519 = ["mcuboot-sys/enc-x25519"]
28 enc-aes256-x25519 = ["mcuboot-sys/enc-aes256-x25519"]
/mcuboot-3.7.0/sim/mcuboot-sys/
DCargo.toml45 enc-rsa = []
48 enc-aes256-rsa = []
51 enc-kw = []
54 enc-aes256-kw = []
57 enc-ec256 = []
60 enc-aes256-ec256 = []
63 enc-ec256-mbedtls = []
66 enc-x25519 = []
69 enc-aes256-x25519 = []
/mcuboot-3.7.0/scripts/imgtool/keys/
Ded25519.py95 enc = serialization.NoEncryption()
97 enc = serialization.BestAvailableEncryption(passwd)
101 encryption_algorithm=enc)
Dx25519.py100 enc = serialization.NoEncryption()
102 enc = serialization.BestAvailableEncryption(passwd)
106 encryption_algorithm=enc)
Drsa.py157 enc = serialization.NoEncryption()
159 enc = serialization.BestAvailableEncryption(passwd)
163 encryption_algorithm=enc)
Decdsa.py133 enc = serialization.NoEncryption()
135 enc = serialization.BestAvailableEncryption(passwd)
139 encryption_algorithm=enc)
/mcuboot-3.7.0/boot/bootutil/src/
Dencrypted.c687 struct enc_key_data *enc; in boot_encrypt() local
710 enc = &enc_state[rc]; in boot_encrypt()
711 assert(enc->valid == 1); in boot_encrypt()
712 bootutil_aes_ctr_encrypt(&enc->aes_ctr, nonce, buf, sz, blk_off, buf); in boot_encrypt()
Dbootutil_priv.h237 struct enc_key_data enc[BOOT_IMAGE_NUMBER][BOOT_NUM_SLOTS]; member
363 #define BOOT_CURR_ENC(state) ((state)->enc[BOOT_CURR_IMG(state)])
/mcuboot-3.7.0/boot/cypress/
DMakefile46 ENC_KEY_FILE ?= enc-ec256-pub
/mcuboot-3.7.0/sim/src/
Dimage.rs1911 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable
1912 dev.read(offset, &mut enc).unwrap(); in install_image()
1914 enc_copy = Some(enc); in install_image()
1945 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable
1946 dev.read(offset, &mut enc).unwrap(); in install_image()
1948 enc_copy = Some(enc); in install_image()
/mcuboot-3.7.0/boot/zephyr/
DKconfig369 default "enc-rsa2048-priv.pem" if BOOT_ENCRYPT_RSA
370 default "enc-ec256-priv.pem" if BOOT_ENCRYPT_EC256
371 default "enc-x25519-priv.pem" if BOOT_ENCRYPT_X25519