-
Notifications
You must be signed in to change notification settings - Fork 7
/
Pairing.dpk
59 lines (55 loc) · 1.65 KB
/
Pairing.dpk
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
package Pairing;
{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$IMPLICITBUILD ON}
requires
rtl,
vcl,
vclactnband,
vclx,
xmlrtl,
IndySystem,
IndyProtocols,
IndyCore;
contains
BNCurves in 'BNCurves.pas',
LargeIntegers in '..\Arithmetic\LargeIntegers.pas',
VLargeIntegers in '..\Arithmetic\VLargeIntegers.pas',
Fp2Arithmetic in '..\Extension Fields\Fp2Arithmetic.pas',
Fp3Arithmetic in '..\Extension Fields\Fp3Arithmetic.pas',
FP4Arithmetic in '..\Extension Fields\FP4Arithmetic.pas',
Fp6Arithmetic in '..\Extension Fields\Fp6Arithmetic.pas',
FP8Arithmetic in '..\Extension Fields\FP8Arithmetic.pas',
FP9Arithmetic in '..\Extension Fields\FP9Arithmetic.pas',
Fp12Arithmetic in '..\Extension Fields\Fp12Arithmetic.pas',
Fp16Arithmetic in '..\Extension Fields\Fp16Arithmetic.pas',
Fp18Arithmetic in '..\Extension Fields\Fp18Arithmetic.pas',
Fp24Arithmetic in '..\Extension Fields\Fp24Arithmetic.pas',
Fp27Arithmetic in '..\Extension Fields\Fp27Arithmetic.pas',
Fp36Arithmetic in '..\Extension Fields\Fp36Arithmetic.pas',
GeneralTypes in '..\Tools\GeneralTypes.pas',
HashFunctions in '..\Tools\HashFunctions.pas';
end.