1//
2//  capabilities.h
3//  CCRegress
4//
5
6#include <Availability.h>
7
8#ifndef __CAPABILITIES_H__
9#define __CAPABILITIES_H__
10
11#define entryPoint(testname,supportname) \
12int testname(int argc, char *const *argv) { \
13char prString[80];\
14sprintf(prString, "No %s Support in this release\n", supportname);\
15plan_tests(1); \
16diag(prString); \
17ok(1, prString); \
18return 0; \
19}
20
21
22
23#define CC_RMD128_DIGEST_LENGTH 16
24#define CC_RMD160_DIGEST_LENGTH 20
25#define CC_RMD256_DIGEST_LENGTH 32
26#define CC_RMD320_DIGEST_LENGTH 40
27
28
29#define CRYPTORWITHMODE 1
30#define CCDIGEST 1
31#define CCRANDOM 1
32#define CCKEYDERIVATION 1
33#define CCCMAC 1
34#define CCRSA 1
35#define CCEC 1
36#define CCDH 1
37#define CCBIGNUM 1
38#define CCRESET 1
39#define CCSYMREGRESSION 1
40#define CCSYMOFFSET 1
41#define CCSYMZEROLEN 1
42#define CCSYMCBC 1
43#define CCSYMOFB 1
44#define CCSYMCFB 1
45#define CCSYMGCM 1
46#define CCSYMCCM 1
47#define CCSYMXTS 1
48#define CCSYMRC2 1
49#define CCPADCTS 1
50#define CCHMACCLONE 1
51#define CCSYMWRAP 1
52#define CCBIGDIGEST 0
53#define CCSYMCTR 1
54#define CCSYMOUTPUTLEN 1
55#define CCWITHDATA 1
56#define CCBLOWFISH 1
57#define COMMON_CRC 1
58#define CNENCODER 1
59#define CCHKDFTEST 1
60#define CCNISTKDFTEST 1
61#define CCNOPAD 1
62#endif /* __CAPABILITIES_H__ */
63