Searched refs:enc (Results 1 – 10 of 10) sorted by relevance
18 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"]
39 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 = []
88 enc = serialization.NoEncryption()90 enc = serialization.BestAvailableEncryption(passwd)94 encryption_algorithm=enc)
90 enc = serialization.NoEncryption()92 enc = serialization.BestAvailableEncryption(passwd)96 encryption_algorithm=enc)
136 enc = serialization.NoEncryption()138 enc = serialization.BestAvailableEncryption(passwd)142 encryption_algorithm=enc)
149 enc = serialization.NoEncryption()151 enc = serialization.BestAvailableEncryption(passwd)155 encryption_algorithm=enc)
728 struct enc_key_data *enc; in boot_encrypt() local751 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()
222 struct enc_key_data enc[BOOT_IMAGE_NUMBER][BOOT_NUM_SLOTS]; member329 #define BOOT_CURR_ENC(state) ((state)->enc[BOOT_CURR_IMG(state)])
1361 let mut enc = vec![0u8; encbuf.len()]; in install_image() localVariable1362 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() localVariable1395 dev.read(offset, &mut enc).unwrap(); in install_image()1397 enc_copy = Some(enc); in install_image()
46 ENC_KEY_FILE ?= enc-ec256-pub