read
Engine.read_small_bootstrap_key(file_path)- Creates a small bootstrap key by reading data from a file.
- Input:
- file_path: str or pathlib.Path
- Can be an absolute or relative path.
- file_path: str or pathlib.Path
- Output:
- SmallBootstrapKey
Examples
Using an absolute path
from desilofhe import Engine
engine = Engine(for_bootstrap=True)
small_bootstrap_key = engine.read_small_bootstrap_key(
"/opt/desilo/small_bootstrap_key"
)
Using a relative path