mirror of
https://github.com/jumpserver/jumpserver.git
synced 2026-07-03 15:50:28 +00:00
15 lines
258 B
Python
15 lines
258 B
Python
from ..base.device import Device
|
|
|
|
|
|
class CCUPMDevice(Device):
|
|
name = "ccupm"
|
|
|
|
def __init__(self):
|
|
self.open()
|
|
|
|
def open(self, driver_path="libsdf_crypto.so"):
|
|
super().open(driver_path)
|
|
|
|
def reset_key_store(self):
|
|
pass
|