19 lines
324 B
Python
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
|