-
Notifications
You must be signed in to change notification settings - Fork 2
/
pour_tests.wdg
272 lines (233 loc) · 10.5 KB
/
pour_tests.wdg
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
#To edit and compare internal_properties, use WINDEV integrated tools.
#Internal properties refer to the properties of controls in windows, reports, etc.
info :
name : pour_tests
major_version : 26
minor_version : 0
type : 7
description : ""
subtype : 0
procedure_set :
identifier : 0x1b3efe68009326bf
internal_properties : BgAAAAYAAABGLu41kG7fjQV3iS4F72qmnKaNh5694reolNKIW0iw
code_elements :
type_code : 31
p_codes :
-
code : |1-
type : 720898
procedures :
-
name : VerifieOpérationBinaire
procedure_id : 1963286291824275359
type_code : 15
code : |1-
PROCÉDURE VerifieOpérationBinaire( opération est procédure, AFormaHexA est chaine, BFormaHexa est une chaîne, RésultatFormaHexa est chaine)
nombreA est Entier256( AFormaHexA )
nombreB est Entier256( BFormaHexa )
ResultatAttendu est Entier256( RésultatFormaHexa )
// calcul de R = A (op) B
ResultatObtenu est Entier256 = opération( nombreA , nombreB )
// vérifie que R = R2
si ResultatObtenu.estEgalA( ResultatAttendu ) ALORS
// OK
retour
FIN
// récup de la ligne du test qui nous a lancé
sLigneOrigine est chaine = ExtraitChaîne( dbgInfo(dbgPile),1,rc,DepuisFin)
//ERR
sErr est chaine = "Erreur de calcul. On devrait trouver X et on a Y" ...
+RC + "X = " + ResultatAttendu.VersChaineHexa() + " (étalon)" ...
+RC + "Y = " + ResultatObtenu.VersChaineHexa() ...
+RC + "Opérandes : " ...
+RC + "A= " + nombreA.VersChaineHexa() ...
+RC + "B= " + nombreB.VersChaineHexa() ...
+RC + sLigneOrigine
//trace(sErr)
<COMPILE SI Configuration<>"Exécutable Linux 64 bits">
TestVérifie( faux, sErr )
<FIN>
type : 458752
-
name : VerifieOpérationUnaire
procedure_id : 1963293816607223186
type_code : 15
code : |1-
PROCÉDURE VerifieOpérationUnaire( opération est procédure, AFormaHexA est chaine, RésultatFormaHexa est chaine)
nombreA est Entier256( AFormaHexA )
ResultatAttendu est Entier256( RésultatFormaHexa )
// calcul de R = (op) A
ResultatObtenu est Entier256 = opération( nombreA )
// vérifie que R = R2
si ResultatObtenu.estEgalA( ResultatAttendu ) ALORS
// OK
retour
FIN
// ERREUR
// récup de la ligne du test qui nous a lancé
sLigneOrigine est chaine = ExtraitChaîne( dbgInfo(dbgPile),1,rc,DepuisFin)
<COMPILE SI Configuration<>"Exécutable Linux 64 bits">
//ERR
TestVérifie( faux, ...
"Erreur de calcul. On devrait trouver X et on a Y" ...
+RC + "X = " + ResultatAttendu.VersChaineHexa() + " (étalon)" ...
+RC + "Y = " + ResultatObtenu.VersChaineHexa() ...
+RC + "Opérandes : " ...
+RC + "A= " + nombreA.VersChaineHexa() ...
+RC + sLigneOrigine )
<FIN>
type : 458752
-
name : VerifieOpérationBinaire_Int
procedure_id : 1963299077942598979
type_code : 15
code : |1-
PROCÉDURE VerifieOpérationBinaire_Int( opération est procédure, AFormaHexA est chaine, nB est un entier sans signe sur 8, RésultatFormaHexa est chaine)
nombreA est Entier256( AFormaHexA )
ResultatAttendu est Entier256( RésultatFormaHexa )
// calcul de R = A (op) B
ResultatObtenu est Entier256 = opération( nombreA , nB )
// vérifie que R = R2
si ResultatObtenu.estEgalA( ResultatAttendu ) ALORS
// OK
retour
FIN
// récup de la ligne du test qui nous a lancé
sLigneOrigine est chaine = ExtraitChaîne( dbgInfo(dbgPile),1,rc,DepuisFin)
<COMPILE SI Configuration<>"Exécutable Linux 64 bits">
nombreB est Entier256( nB )
//ERR
TestVérifie( faux, ...
"Erreur de calcul. On devrait trouver X et on a Y" ...
+RC + "X = " + ResultatAttendu.VersChaineHexa() + " (étalon)" ...
+RC + "Y = " + ResultatObtenu.VersChaineHexa() ...
+RC + "Opérandes : " ...
+RC + "A= " + nombreA.VersChaineHexa() ...
+RC + "B= " + nombreB.VersChaineHexa() ...
+RC + sLigneOrigine)
<FIN>
type : 458752
-
name : VerifieSoustraction_Corps
procedure_id : 1964762721187639433
type_code : 15
code : |1-
PROCÉDURE VerifieSoustraction_Corps( C est CorpsModulaire, AFormaHexA est chaine, BFormaHexa est une chaîne, RésultatFormaHexa est chaine)
nombreA est Entier256( AFormaHexA )
nombreB est Entier256( BFormaHexa )
ResultatAttendu est Entier256( RésultatFormaHexa )
// calcul de R = A (op) B
ResultatObtenu est Entier256 = C.soustractionModulo( nombreA , nombreB )
// vérifie que R = R2
si ResultatObtenu.estEgalA( ResultatAttendu ) ALORS
// OK
retour
FIN
// récup de la ligne du test qui nous a lancé
sLigneOrigine est chaine = ExtraitChaîne( dbgInfo(dbgPile),1,rc,DepuisFin)
//ERR
sErr est chaine = "Erreur de calcul. On devrait trouver X et on a Y" ...
+RC + "X = " + ResultatAttendu.VersChaineHexa() + " (étalon)" ...
+RC + "Y = " + ResultatObtenu.VersChaineHexa() ...
+RC + "Opérandes : " ...
+RC + "A= " + nombreA.VersChaineHexa() ...
+RC + "B= " + nombreB.VersChaineHexa() ...
+RC + sLigneOrigine
//trace(sErr)
<COMPILE SI Configuration<>"Exécutable Linux 64 bits">
TestVérifie( faux, sErr )
<FIN>
type : 458752
-
name : mini_auto_test
procedure_id : 2197634185840615890
type_code : 15
code : |1-
// test mini pour vérifier que les fonctions de base fonctionnent
PROCEDURE mini_auto_test() : booléen
procédure interne _LOG( texte )
si EnModeLinux() ALORS
dbgSortieStandard( texte )
sinon
trace( texte )
FIN
FIN
_LOG("Auto tests...")
si arithmetique.gbADX_Supporté ALORS
_LOG("avec ADX")
SINON
_LOG("sans ADX")
FIN
courbeTemp est un CourbeElliptique_secp256k1
_A est entier256("0x1111222233334444")
_B est entier256("0x079ABCD201005007")
_C est entier256("0x0081C8D40D2967D4876DC1FBAFBC1DDC")
_LOG("arithmetique.multiplication256x256_512 = 0x"+ EntierVersHexa(arithmetique.addrprocMult256x256_512_ASM,16 ))
//_LOG("courbeTemp.corps_ordre.addrprocMult256x256Modulo = 0x"+ EntierVersHexa(courbeTemp.corps_ordre.addrprocMult256x256Modulo,16 ))
//_R256 est entier256 = courbeTemp.corps_ordre.multiplicationModulo(_A,_B)
_R512 est entier512 = arithmetique.multiplication256x256_512(_A,_B)
si pas _R512.valPoidsFaible.estEgalA( _C) ALORS
_LOG(".multiplicationModulo FAILED ")
_LOG("C attendu ="+_C.VersChaineHexa())
_LOG("C obtenu ="+ _R512.valPoidsFaible.VersChaineHexa())
renvoyer faux
FIN
// clé privée :
gcléPrivée est Entier256("b268cc0de4043c486df8598938abdc5e99d06fd1b92b12f50daaa9224654872c")
_LOG("gcléPrivée="+gcléPrivée.VersChaineHexa()+RC)
_LOG("multiplication256x256_512 = b *0x" + EntierVersHexa( courbeTemp.corps_ordre.addrprocMult256x256Modulo ,16))
// clé publique (pour test)
gCléPubliquePourTest est Point256 //= CrytoLib.DériveCléPubliqueDepuisCléPrivée( ClePrivee )
gCléPubliquePourTest.x.affecteAvecChaineHexa("55384c8e1a81d0068d0016eb9623032e1ae865e9fb0802d4e6bb84fe8626bc5a")
gCléPubliquePourTest.y.affecteAvecChaineHexa("1eb6728bd2c2949eef92acf5375ea08ab65c6cc85b56cb512aeffb00330bcf91")
_T est entier sur 8 sans signe = HexaVersEntier("1000003D")
_LOG("T="+ EntierVersHexa(_T , 16 ))
MM est Entier256("0x240cc98a4efb0423883ffce6cf1cd9e180491248ffef420b8aac9540a1ea67a0")
//X est Entier256("0x55384c8e1a81d0068d0016eb9623032e1ae865e9fb0802d4e6bb84fe8626bc5a")
_2S est Entier256("0xe0cde402846113558a0500c7c8a5e588ff89061a77eaa063d7d76386e86645d9")
_X_OK est Entier256("0x433ee587ca99f0cdfe3afc1f0676f45880c00c2e8804a1a7b2d531b8b9841df6")
_LOG("addrprocSoustractionModulo = b *0x" + EntierVersHexa( courbeTemp.corps_coord.addrprocSoustractionModulo,16))
_X_test est Entier256 =courbeTemp.corps_coord.soustractionModulo( MM, _2S )
SI PAS _X_test.estEgalA( _X_OK ) ALORS
_LOG("soustractionModulo FAILED")
_LOG("MS_X_test ="+_X_test.VersChaineHexa())
_LOG("MS_X_OK ="+_X_OK.VersChaineHexa())
renvoyer faux
FIN
_LOG("addrprocMult256x64Modulo = b*0x" + EntierVersHexa( courbeTemp.corps_coord.addrprocMult256x64Modulo,16))// cp_fois2 est Entier256 = courbeTemp.corps_coord.multiplication_255x8_Modulo(gCléPubliquePourTest.x,2)
_inv2 est Entier256 = courbeTemp.corps_ordre.inverseModulo(gcléPrivée)
_LOG("1/2 mod P ="+_inv2.VersChaineHexa()+RC)
pointGenFois2_J est Point256_3D
pointGenFois2_J.VersJacobi(gCléPubliquePourTest)
_LOG("VersJacobi. done." +RC)
_LOG("pfPointDouble_Jacobi_ASM = 0x"+ EntierVersHexa( courbeTemp.pfPointDouble_Jacobi_ASM, 16 ) +RC)
pointGenFois2_J = courbeTemp.pointDouble_Jacobi( pointGenFois2_J )
_LOG("Xj="+ pointGenFois2_J.x.VersChaineHexa() )
_LOG("Yj="+ pointGenFois2_J.y.VersChaineHexa() )
_LOG("Zj="+ pointGenFois2_J.Z.VersChaineHexa() )
soit pointGenFois2 = courbeTemp._JacobiVersPoint(pointGenFois2_J)
_LOG("X="+ pointGenFois2.x.VersChaineHexa() )
_LOG("Y="+ pointGenFois2.y.VersChaineHexa() )
// 1 test a blanc et vérif
gCléPubliqueDérivée est Point256 = dériveCléPubliqueDepuisCléPrivée( gcléPrivée )
_LOG("X="+ gCléPubliqueDérivée.x.VersChaineHexa() )
_LOG("Y="+ gCléPubliqueDérivée.y.VersChaineHexa() )
SI PAS gCléPubliqueDérivée.PointestEgalA(gCléPubliquePourTest) ALORS
_LOG("gCléPubliqueDérivée.PointestEgalA FAILED ")
renvoyer faux
FIN
// success
_LOG("OK")
renvoyer vrai
type : 458752
procedure_templates : []
property_templates : []
code_parameters :
internal_properties : BgAAAAYAAAA6ih3UbgNXHwTtiPSFUEj+2fi/m7v4QV2rqidAupM=
original_name : ProcéduresGlobales1
resources :
string_res :
identifier : 0x1b3efe5c0091f82d
internal_properties : BgAAAAYAAAAnMYFQ1bL/vz9ehh7L22SNNSlIzGTOI8h5F/WtgDNP
custom_note :
internal_properties : BgAAAAYAAABtB9HWVzrXO2+4NDRVK0vmzaNKrCKqH1DBX30lMmGZ