Searched refs:enc (Results 1 – 12 of 12) sorted by relevance
/mcuboot-latest/sim/ |
D | Cargo.toml | 21 enc-rsa = ["mcuboot-sys/enc-rsa"] 22 enc-aes256-rsa = ["mcuboot-sys/enc-aes256-rsa"] 23 enc-kw = ["mcuboot-sys/enc-kw"] 24 enc-aes256-kw = ["mcuboot-sys/enc-aes256-kw"] 25 enc-ec256 = ["mcuboot-sys/enc-ec256"] 26 enc-ec256-mbedtls = ["mcuboot-sys/enc-ec256-mbedtls"] 27 enc-aes256-ec256 = ["mcuboot-sys/enc-aes256-ec256"] 28 enc-x25519 = ["mcuboot-sys/enc-x25519"] 29 enc-aes256-x25519 = ["mcuboot-sys/enc-aes256-x25519"]
|
/mcuboot-latest/sim/mcuboot-sys/ |
D | Cargo.toml | 49 enc-rsa = [] 52 enc-aes256-rsa = [] 55 enc-kw = [] 58 enc-aes256-kw = [] 61 enc-ec256 = [] 64 enc-aes256-ec256 = [] 67 enc-ec256-mbedtls = [] 70 enc-x25519 = [] 73 enc-aes256-x25519 = []
|
/mcuboot-latest/scripts/imgtool/keys/ |
D | ed25519.py | 99 enc = serialization.NoEncryption() 101 enc = serialization.BestAvailableEncryption(passwd) 105 encryption_algorithm=enc)
|
D | x25519.py | 100 enc = serialization.NoEncryption() 102 enc = serialization.BestAvailableEncryption(passwd) 106 encryption_algorithm=enc)
|
D | rsa.py | 157 enc = serialization.NoEncryption() 159 enc = serialization.BestAvailableEncryption(passwd) 163 encryption_algorithm=enc)
|
D | ecdsa.py | 133 enc = serialization.NoEncryption() 135 enc = serialization.BestAvailableEncryption(passwd) 139 encryption_algorithm=enc)
|
/mcuboot-latest/boot/bootutil/src/ |
D | encrypted.c | 707 struct enc_key_data *enc = &enc_state[slot]; in boot_enc_encrypt() local 722 assert(enc->valid == 1); in boot_enc_encrypt() 723 bootutil_aes_ctr_encrypt(&enc->aes_ctr, nonce, buf, sz, blk_off, buf); in boot_enc_encrypt() 730 struct enc_key_data *enc = &enc_state[slot]; in boot_enc_decrypt() local 745 assert(enc->valid == 1); in boot_enc_decrypt() 746 bootutil_aes_ctr_decrypt(&enc->aes_ctr, nonce, buf, sz, blk_off, buf); in boot_enc_decrypt()
|
D | bootutil_priv.h | 261 struct enc_key_data enc[BOOT_IMAGE_NUMBER][BOOT_NUM_SLOTS]; member 403 #define BOOT_CURR_ENC(state) ((state)->enc[BOOT_CURR_IMG(state)])
|
/mcuboot-latest/boot/zephyr/ |
D | CMakeLists.txt | 393 ${MCUBOOT_DIR}/enc-ec256-priv.pem 394 ${MCUBOOT_DIR}/enc-ec256-pub.pem 395 ${MCUBOOT_DIR}/enc-rsa2048-priv.pem 396 ${MCUBOOT_DIR}/enc-rsa2048-pub.pem 397 ${MCUBOOT_DIR}/enc-x25519-priv.pem 398 ${MCUBOOT_DIR}/enc-x25519-pub.pem
|
D | Kconfig | 532 default "enc-rsa2048-priv.pem" if BOOT_ENCRYPT_RSA 533 default "enc-ec256-priv.pem" if BOOT_ENCRYPT_EC256 534 default "enc-x25519-priv.pem" if BOOT_ENCRYPT_X25519
|
/mcuboot-latest/boot/cypress/ |
D | Makefile | 46 ENC_KEY_FILE ?= enc-ec256-pub
|
/mcuboot-latest/sim/src/ |
D | image.rs | 1938 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable 1939 dev.read(offset, &mut enc).unwrap(); in install_image() 1941 enc_copy = Some(enc); in install_image() 1972 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable 1973 dev.read(offset, &mut enc).unwrap(); in install_image() 1975 enc_copy = Some(enc); in install_image()
|