nvidia_shield/hw_in_the_loop.py

19 lines
324 B
Python
Raw Normal View History

2025-01-03 17:00:57 +01:00
import typing
if typing.TYPE_CHECKING:
from GA_debugger import *
class HWDevice():
def __init__(self) -> None:
pass
class CryptoEngine(HWDevice):
def __init__(self) -> None:
pass
# NvBootSeAesCmacGenerateSubkey
# NvBootSeAesEncrypt
def hw_in_the_loop():
pass