Home
last modified time | relevance | path

Searched refs:cipher (Results 1 – 6 of 6) sorted by relevance

/mcuboot-latest/sim/src/
Dtlv.rs20 use cipher::FromBlockCipher;
41 use cipher::{
747 let mut cipher = Aes256Ctr::from_block_cipher(block, &nonce); in make_tlv() localVariable
748 cipher.apply_keystream(&mut cipherkey); in make_tlv()
752 let mut cipher = Aes128Ctr::from_block_cipher(block, &nonce); in make_tlv() localVariable
753 cipher.apply_keystream(&mut cipherkey); in make_tlv()
Dimage.rs31 use cipher::{
97 cipher: Option<Vec<u8>>, field
1885 let mut cipher = Aes256Ctr::from_block_cipher(block, &nonce); in install_image() localVariable
1886 cipher.apply_keystream(&mut b_encimg); in install_image()
1890 let mut cipher = Aes128Ctr::from_block_cipher(block, &nonce); in install_image() localVariable
1891 cipher.apply_keystream(&mut b_encimg); in install_image()
1956 cipher: enc_copy, in install_image()
1983 cipher: enc_copy, in install_image()
1993 cipher: None, in install_no_image()
2055 (true, 1) => self.cipher.as_ref().expect("Invalid image"), in find()
/mcuboot-latest/sim/
DCargo.toml52 cipher = "0.3"
/mcuboot-latest/
DCargo.lock12 "cipher",
51 "cipher",
92 name = "cipher"
115 "cipher",
/mcuboot-latest/scripts/imgtool/
Dimage.py691 cipher = Cipher(algorithms.AES(plainkey), modes.CTR(nonce),
693 encryptor = cipher.encryptor()
/mcuboot-latest/ext/tinycrypt/documentation/
Dtinycrypt.rst39 * Type of primitive: Block cipher.