Shofel2_T124_python/hw_in_the_loop.py

19 lines
324 B
Python

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