forked from Cxbx-Reloaded/xbox_kernel_test_suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxc_tests.c
67 lines (51 loc) · 1.44 KB
/
xc_tests.c
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
59
60
61
62
63
64
65
66
67
void test_XcSHAInit(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcSHAUpdate(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcSHAFinal(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcRC4Key(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcRC4Crypt(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcHMAC(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcPKEncPublic(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcPKDecPrivate(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcPKGetKeyLen(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcVerifyPKCS1Signature(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcModExp(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcDESKeyParity(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcKeyTable(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcBlockCrypt(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcBlockCryptCBC(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcCryptService(){
/* FIXME: This is a stub! implement this function! */
}
void test_XcUpdateCrypto(){
/* FIXME: This is a stub! implement this function! */
}