pyecsca.sca.target.binary module¶
Provides a binary target class which represents a target that is a runnable binary on the host.
- class BinaryTarget(binary, debug_output=False, **kwargs)[source]¶
Bases:
SerialTarget
Binary target that is runnable on the host and communicates using the stdin/stdout streams.
-
process:
Optional
[Popen
] = None¶
-
binary:
List
[str
]¶
-
debug_output:
bool
¶
- write(data)[source]¶
Write the
data
bytes to the target’s serial input.- Parameters:
data¶ (
bytes
) – The data to write.- Return type:
None
-
process: