zuzu-rust 0.5.0

Rust implementation of ZuzuScript
Documentation
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
from std/secure import PasswordHash, Secure;
from test/more import *;

let caps := Secure.capabilities();

is( Secure.has( "random", "bytes" ), true, "random bytes is available" );
is( Secure.has( "random", "token" ), true, "random token is available" );
is( Secure.has( "random", "int" ), true, "random int is available" );
is(
	Secure.has( "kdf", "hkdf-sha256" ),
	true,
	"hkdf-sha256 is available",
);
is(
	Secure.has( "cipher", "aes-256-gcm" ),
	true,
	"aes-256-gcm is available",
);
if ( caps{host} == "perl" ) {
	is(
		Secure.has( "cipher", "aes-128-gcm" ),
		true,
		"Perl advertises aes-128-gcm",
	);
	is(
		Secure.require( "cipher", "aes-128-gcm" ),
		true,
		"require returns true for aes-128-gcm",
	);
	is(
		Secure.has( "cipher", "aes-192-gcm" ),
		true,
		"Perl advertises aes-192-gcm",
	);
	is(
		Secure.require( "cipher", "aes-192-gcm" ),
		true,
		"require returns true for aes-192-gcm",
	);
}
else {
	is(
		Secure.has( "cipher", "aes-128-gcm" ),
		false,
		"non-Perl hosts do not advertise aes-128-gcm",
	);
	is(
		Secure.has( "cipher", "aes-192-gcm" ),
		false,
		"non-Perl hosts do not advertise aes-192-gcm",
	);
}
if ( caps{host} == "browser" ) {
	is(
		Secure.has( "cipher", "chacha20-poly1305" ),
		false,
		"browser does not advertise chacha20-poly1305",
	);
}
else if ( caps{host} == "electron" ) {
	if ( Secure.has( "cipher", "chacha20-poly1305" ) ) {
		is(
			Secure.require( "cipher", "chacha20-poly1305" ),
			true,
			"require returns true for chacha20-poly1305",
		);
	}
	else {
		like(
			exception( function () {
				Secure.require( "cipher", "chacha20-poly1305" );
			} ),
			/cipher\/chacha20-poly1305/,
			"require rejects unavailable chacha20-poly1305",
		);
	}
}
else {
	is(
		Secure.has( "cipher", "chacha20-poly1305" ),
		true,
		"chacha20-poly1305 is available",
	);
	is(
		Secure.require( "cipher", "chacha20-poly1305" ),
		true,
		"require returns true for chacha20-poly1305",
	);
}
is(
	Secure.has( "key_agreement", "x25519" ),
	true,
	"x25519 key agreement is available",
);
is(
	Secure.require( "key_agreement", "x25519" ),
	true,
	"require returns true for x25519",
);
if ( caps{host} == "browser" ) {
	is(
		Secure.has( "signing", "ed25519" ),
		false,
		"ed25519 signing is not advertised in browsers",
	);
}
else {
	is(
		Secure.has( "signing", "ed25519" ),
		true,
		"ed25519 signing is available",
	);
	is(
		Secure.require( "signing", "ed25519" ),
		true,
		"require returns true for ed25519 signing",
	);
}
is(
	Secure.has( "signing", "ecdsa-p256-sha256" ),
	true,
	"ecdsa-p256-sha256 signing is available",
);
is(
	Secure.require( "signing", "ecdsa-p256-sha256" ),
	true,
	"require returns true for ecdsa-p256-sha256",
);
is(
	Secure.has( "signing", "ecdsa-p384-sha384" ),
	true,
	"ecdsa-p384-sha384 signing is available",
);
is(
	Secure.require( "signing", "ecdsa-p384-sha384" ),
	true,
	"require returns true for ecdsa-p384-sha384",
);
if ( caps{host} == "perl" ) {
	is(
		Secure.has( "signing", "ecdsa-p521-sha512" ),
		true,
		"Perl advertises ecdsa-p521-sha512 signing",
	);
	is(
		Secure.require( "signing", "ecdsa-p521-sha512" ),
		true,
		"require returns true for ecdsa-p521-sha512",
	);
}
else {
	is(
		Secure.has( "signing", "ecdsa-p521-sha512" ),
		false,
		"non-Perl hosts do not advertise ecdsa-p521-sha512",
	);
}
is(
	Secure.has( "password_hash", "pbkdf2-sha256" ),
	true,
	"pbkdf2-sha256 password hash is available",
);
is( Secure.has( "kdf", "unknown" ), false, "unknown kdf is unavailable" );
is(
	Secure.has( "password_hash", "unknown" ),
	false,
	"unknown password hash is unavailable",
);
is(
	Secure.has( "cipher", "unknown" ),
	false,
	"unknown cipher is unavailable",
);
is( Secure.has( "unknown", "thing" ), false, "unknown area is unavailable" );
is( Secure.has( "random", "unknown" ), false, "unknown name is unavailable" );
is( Secure.has( null, "bytes" ), false, "null area is unavailable" );
is( Secure.has( "random", null ), false, "null name is unavailable" );

is(
	Secure.require( "random", "bytes" ),
	true,
	"require returns true for available capability",
);
is(
	Secure.require( "kdf", "hkdf-sha256" ),
	true,
	"require returns true for hkdf-sha256",
);
is(
	Secure.require( "cipher", "aes-256-gcm" ),
	true,
	"require returns true for aes-256-gcm",
);
is(
	Secure.has( "certificate", "parse-x509-der" ),
	true,
	"parse-x509-der certificate capability is available",
);
is(
	Secure.has( "certificate", "fingerprint-sha256" ),
	true,
	"fingerprint-sha256 certificate capability is available",
);
if ( caps{host} == "perl" ) {
	is(
		Secure.has( "certificate", "fingerprint-sha384" ),
		true,
		"Perl advertises SHA-384 certificate fingerprinting",
	);
	is(
		Secure.has( "certificate", "fingerprint-sha512" ),
		true,
		"Perl advertises SHA-512 certificate fingerprinting",
	);
}
else {
	is(
		Secure.has( "certificate", "fingerprint-sha384" ),
		false,
		"non-Perl hosts do not advertise SHA-384 certificate fingerprinting",
	);
	is(
		Secure.has( "certificate", "fingerprint-sha512" ),
		false,
		"non-Perl hosts do not advertise SHA-512 certificate fingerprinting",
	);
}
if ( caps{host} == "browser" ) {
	is(
		Secure.has( "certificate", "verify-chain" ),
		false,
		"browser does not advertise certificate chain verification",
	);
}
else {
	is(
		Secure.has( "certificate", "verify-chain" ),
		true,
		"certificate chain verification is available",
	);
}
is(
	Secure.has( "tls_identity", "pem" ),
	true,
	"PEM TLS identity capability is available",
);
if ( caps{host} == "browser" ) {
	is(
		Secure.has( "certificate", "parse-x509" ),
		false,
		"browser does not advertise PEM certificate parsing",
	);
	is(
		Secure.has( "certificate", "public-key" ),
		false,
		"browser does not advertise certificate public-key extraction",
	);
	is(
		Secure.has( "tls_identity", "pkcs12" ),
		false,
		"browser does not advertise PKCS#12 TLS identity",
	);
}
else {
	is(
		Secure.has( "certificate", "parse-x509" ),
		true,
		"host advertises PEM certificate parsing",
	);
	is(
		Secure.has( "certificate", "public-key" ),
		true,
		"host advertises certificate public-key extraction",
	);
	is(
		Secure.has( "tls_identity", "pkcs12" ),
		true,
		"host advertises PKCS#12 TLS identity",
	);
}
is(
	Secure.require( "password_hash", "pbkdf2-sha256" ),
	true,
	"require returns true for pbkdf2-sha256",
);

is(
	PasswordHash.default_algorithm(),
	"pbkdf2-sha256",
	"default password hash algorithm is portable",
);

if ( caps{host} == "perl" or caps{host} == "rust" ) {
	is(
		Secure.has( "password_hash", "argon2id" ),
		true,
		"argon2id is available on this host",
	);
	is(
		Secure.require( "password_hash", "argon2id" ),
		true,
		"require returns true for host argon2id",
	);
}
else {
	is(
		Secure.has( "password_hash", "argon2id" ),
		false,
		"argon2id is not advertised on this host",
	);
	like(
		exception( function () {
			Secure.require( "password_hash", "argon2id" );
		} ),
		/password_hash\/argon2id/,
		"require rejects unavailable argon2id",
	);
}

if (
	caps{host} == "perl"
	or caps{host} == "rust"
	or caps{host} == "node"
	or caps{host} == "electron"
) {
	is(
		Secure.has( "password_hash", "scrypt" ),
		true,
		"scrypt is available on this host",
	);
	is(
		Secure.require( "password_hash", "scrypt" ),
		true,
		"require returns true for host scrypt",
	);
}
else {
	is(
		Secure.has( "password_hash", "scrypt" ),
		false,
		"scrypt is not advertised on this host",
	);
	like(
		exception( function () {
			Secure.require( "password_hash", "scrypt" );
		} ),
		/password_hash\/scrypt/,
		"require rejects unavailable scrypt",
	);
}

if ( caps{host} == "perl" ) {
	is(
		Secure.has( "password_hash", "crypt" ),
		true,
		"crypt is available on this host",
	);
	is(
		Secure.require( "password_hash", "crypt" ),
		true,
		"require returns true for host crypt",
	);
}
else {
	is(
		Secure.has( "password_hash", "crypt" ),
		false,
		"crypt is not advertised on this host",
	);
	like(
		exception( function () {
			Secure.require( "password_hash", "crypt" );
		} ),
		/password_hash\/crypt/,
		"require rejects unavailable crypt",
	);
}

let kdf_err := exception( function () {
	Secure.require( "kdf", "unknown" );
} );
like(
	kdf_err,
	/kdf\/unknown/,
	"require reports unsupported area and name",
);

let unknown_err := exception( function () {
	Secure.require( "unknown", "thing" );
} );
like(
	unknown_err,
	/unknown\/thing/,
	"require reports unknown area and name",
);
if ( caps{host} == "perl" ) {
	like( unknown_err, /perl/, "require reports Perl host name" );
}
else if ( caps{host} == "rust" ) {
	like( unknown_err, /rust/, "require reports Rust host name" );
}
else if ( caps{host} == "node" ) {
	like( unknown_err, /node/, "require reports Node host name" );
}
else if ( caps{host} == "electron" ) {
	like( unknown_err, /electron/, "require reports Electron host name" );
}
else if ( caps{host} == "browser" ) {
	like( unknown_err, /browser/, "require reports browser host name" );
}
else {
	fail( "require reports host name" );
}

let null_err := exception( function () {
	Secure.require( null, "bytes" );
} );
like(
	null_err,
	/Secure capability '\/bytes'/,
	"require treats null area as unsupported",
);

done_testing();