-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyViKeyLib.pyi
58 lines (20 loc) · 1.06 KB
/
pyViKeyLib.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
def VikeyFind() -> int: ...
def VikeyGetHID(index: int) -> int: ...
def VikeyGetSoftIDString(index: int) -> str: ...
def VikeyGetType(index: int) -> int: ...
def VikeyGetLevel(index: int) -> int: ...
def VikeyGetPtroductName(index: int) -> str: ...
def ViKeyRandom(index: int) -> tuple: ...
def VikeyReadData(address: int, length: int, index: int) -> bytes: ...
def VikeyWriteData(address: int, data: bytes, index: int) -> int: ...
def VikeyMD5(data: bytes, index: int) -> bytes: ...
def VikeySHA1(data: bytes, index: int) -> bytes: ...
def VikeyHmacMD5(data: bytes, index: int) -> bytes: ...
def VikeyHmacSHA1(data: bytes, index: int) -> bytes: ...
def VikeyDesEncrypt(data: bytes, index: int) -> bytes: ...
def VikeyDesDecrypt(data: bytes, index: int) -> bytes: ...
def Vikey3DesEncrypt(data: bytes, index: int) -> bytes: ...
def Vikey3DesDecrypt(data: bytes, index: int) -> bytes: ...
def VikeyUserLogin(password: str, index: int) -> int: ...
def VikeyAdminLogin(password: str, index: int) -> int: ...
def VikeyLogout(index: int) -> int: ...