Searched refs:cipher (Results 1 – 6 of 6) sorted by relevance
/mcuboot-latest/sim/src/ |
D | tlv.rs | 20 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()
|
D | image.rs | 31 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/ |
D | Cargo.toml | 52 cipher = "0.3"
|
/mcuboot-latest/ |
D | Cargo.lock | 12 "cipher", 51 "cipher", 92 name = "cipher" 115 "cipher",
|
/mcuboot-latest/scripts/imgtool/ |
D | image.py | 691 cipher = Cipher(algorithms.AES(plainkey), modes.CTR(nonce), 693 encryptor = cipher.encryptor()
|
/mcuboot-latest/ext/tinycrypt/documentation/ |
D | tinycrypt.rst | 39 * Type of primitive: Block cipher.
|