Home
last modified time | relevance | path

Searched refs:path (Results 1 – 25 of 32) sorted by relevance

12

/mcuboot-latest/
D.gitmodules2 path = ext/mbedtls
5 path = boot/cypress/libs/mtb-pdl-cat1
8 path = boot/cypress/libs/pdl/psoc6pdl
11 path = boot/cypress/libs/retarget-io
14 path = boot/cypress/libs/core-lib
17 path = boot/cypress/libs/psoc6hal
20 path = boot/cypress/libs/cy-mbedtls-acceleration
/mcuboot-latest/scripts/imgtool/keys/
Ded25519.py44 def export_private(self, path, passwd=None): argument
47 def export_public(self, path): argument
52 with open(path, 'wb') as f:
93 def export_private(self, path, passwd=None): argument
106 with open(path, 'wb') as f:
Decdsa_test.py8 import os.path
17 sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..')))
27 return os.path.join(self.test_dir.name, base)
Dx25519.py46 def export_private(self, path, passwd=None): argument
49 def export_public(self, path): argument
54 with open(path, 'wb') as f:
94 def export_private(self, path, passwd=None): argument
107 with open(path, 'wb') as f:
Ded25519_test.py9 import os.path
17 sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '../..')))
28 return os.path.join(self.test_dir.name, base)
Drsa_test.py18 sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__),
31 return os.path.join(self.test_dir.name, base)
Decdsa.py6 import os.path
49 def export_private(self, path, passwd=None): argument
52 def export_public(self, path): argument
57 with open(path, 'wb') as f:
78 print(os.path.basename(__file__) +
129 def export_private(self, path, passwd=None): argument
140 with open(path, 'wb') as f:
Drsa.py56 def export_private(self, path, passwd=None): argument
59 def export_public(self, path): argument
64 with open(path, 'wb') as f:
153 def export_private(self, path, passwd=None): argument
164 with open(path, 'wb') as f:
D__init__.py46 def load(path, passwd=None): argument
49 with open(path, 'rb') as f:
/mcuboot-latest/scripts/
Dassemble.py28 import os.path
99 dot_config = os.path.join(bootdir, "zephyr", ".config")
130 sys.path.insert(0, os.path.join(zephyr_base, "scripts", "dts", "python-devicetree", "src"))
135 edt_pickle = os.path.join(args.bootdir, "zephyr", "edt.pickle")
142 output.add_image(os.path.join(args.bootdir, 'zephyr', 'zephyr.bin'), 'mcuboot')
/mcuboot-latest/ci/
Dget_features.py18 import os.path
28 if not os.path.isfile(args.infile):
/mcuboot-latest/scripts/imgtool/
Dimage.py32 import os.path
336 def load(self, path): argument
338 ext = os.path.splitext(path)[1][1:].lower()
341 ih = IntelHex(path)
346 with open(path, 'rb') as f:
378 def save(self, path, hex_addr=None): argument
380 ext = os.path.splitext(path)[1][1:].lower()
407 h.tofile(path, 'hex')
411 with open(path, 'wb') as f:
479 print(os.path.basename(__file__) + ": sign the payload")
[all …]
Ddumpinfo.py20 import os.path
256 print("Printing content of signed image:", os.path.basename(imgfile), "\n")
Dmain.py50 keys.RSA.generate().export_private(path=keyfile, passwd=passwd)
54 keys.RSA.generate(key_size=3072).export_private(path=keyfile,
67 keys.Ed25519.generate().export_private(path=keyfile, passwd=passwd)
71 keys.X25519.generate().export_private(path=keyfile, passwd=passwd)
/mcuboot-latest/sim/
DCargo.toml47 simflash = { path = "simflash" }
48 mcuboot-sys = { path = "mcuboot-sys" }
/mcuboot-latest/ext/mbedtls-asn1/include/mbedtls/
Dpk.h735 const char *path, const char *password,
755 int mbedtls_pk_parse_public_keyfile( mbedtls_pk_context *ctx, const char *path );
857 int mbedtls_pk_load_file( const char *path, unsigned char **buf, size_t *n );
Dmd.h329 int mbedtls_md_file( const mbedtls_md_info_t *md_info, const char *path,
/mcuboot-latest/boot/nuttx/
Dmain.c78 info.path = flash_area->fa_mtd_path; in do_boot()
/mcuboot-latest/boot/mbed/
Dmcuboot_imgtool.cmake26 # Make sure the signing key path is absolute for EXISTS, relative to the top level build dir
31 …message(FATAL_ERROR "Must specify path to valid image signing key via MCUBOOT_SIGNING_KEY CMake op…
38 # Make sure the signing key path is absolute for EXISTS, relative to the top level build dir
43 …message(FATAL_ERROR "Since mcuboot.encrypt-rsa is enabled, you must specify the path to a valid im…
61 # mbed_generate_bin_hex() puts the hex file at the following path
131 # Figure out file path
171 # Figure out file path
/mcuboot-latest/sim/simflash/src/
Dlib.rs25 path::Path,
125 pub fn write_file<P: AsRef<Path>>(&self, path: P) -> Result<()> { in write_file()
126 let mut fd = File::create(path)?; in write_file()
/mcuboot-latest/ci/fih_test_docker/
Dfi_tester_gdb.sh78 -chardev file,id=char0,path=$QEMU_LOG_FILE \
/mcuboot-latest/samples/zephyr/
Dtest-compile.go142 header.Name = path.Join(baseName, zipName)
/mcuboot-latest/sim/mcuboot-sys/
Dbuild.rs9 use std::path::{Path, PathBuf};
496 fn walk_dir<P: AsRef<Path>>(path: P) -> io::Result<()> { in walk_dir()
497 for ent in fs::read_dir(path.as_ref())? { in walk_dir()
499 let p = ent.path(); in walk_dir()
/mcuboot-latest/samples/runtime-source/zephyr/
DREADME.md13 source <path-to-zephyr>/zephyr-env.sh
/mcuboot-latest/boot/cypress/
DREADME.md77 *Make* - make sure it is added to system's `PATH` variable and correct path is first in the list;
79 *Python/Python3* - make sure you have correct path referenced in `PATH`;

12