forked from rurban/smhasher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.sanity
4703 lines (2993 loc) · 148 KB
/
log.sanity
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--- Testing donothing32 "Do-Nothing function (measure call overhead)" SKIP
[[[ Sanity Tests ]]]
Verification value 0x00000000 ....... INSECURE (should not be 0)
Running sanity check 1 . 0: 0x01 != 0x02 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000127 seconds
--- Testing donothing64 "Do-Nothing function (measure call overhead)" SKIP
[[[ Sanity Tests ]]]
Verification value 0x00000000 ....... INSECURE (should not be 0)
Running sanity check 1 . 0: 0x01 != 0x02 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000104 seconds
--- Testing donothing128 "Do-Nothing function (measure call overhead)" SKIP
[[[ Sanity Tests ]]]
Verification value 0x00000000 ....... INSECURE (should not be 0)
Running sanity check 1 . 0: 0x01 != 0x02 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000052 seconds
--- Testing NOP_OAAT_read64 "Noop function (measure call + OAAT reading overhead)" SKIP
[[[ Sanity Tests ]]]
Verification value 0x00000000 ....... INSECURE (should not be 0)
Running sanity check 1 . 4: 0x01 != 0x02 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000110 seconds
--- Testing BadHash "very simple XOR shift" SKIP
[[[ Sanity Tests ]]]
Verification value 0xAB432E23 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 17.659868 seconds
--- Testing sumhash "sum all bytes" SKIP
[[[ Sanity Tests ]]]
Verification value 0x0000A9AC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.237258 seconds
--- Testing sumhash32 "sum all 32bit words" SKIP
[[[ Sanity Tests ]]]
Verification value 0x3D6DC280 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 1.685149 seconds
--- Testing multiply_shift "Dietzfelbinger Multiply-shift on strings" POOR
[[[ Sanity Tests ]]]
Verification value 0x34D74ED6 ....... FAIL! (Expected 0xfce355a6)
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.456773 seconds
--- Testing pair_multiply_shift "Pair-multiply-shift" POOR
[[[ Sanity Tests ]]]
Verification value 0xC2FBD3BE ....... FAIL! (Expected 0xd4b20347)
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.155768 seconds
--- Testing crc32 "CRC-32 soft" POOR
[[[ Sanity Tests ]]]
Verification value 0x3719DB20 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 33.510987 seconds
--- Testing md5-128 "MD5" GOOD
[[[ Sanity Tests ]]]
Verification value 0xF263F96F ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 49.750673 seconds
--- Testing md5_64 "MD5, bits 32-95" GOOD
[[[ Sanity Tests ]]]
Verification value 0x12F0BA8E ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 49.346057 seconds
--- Testing md5_32 "MD5, bits 32-63" GOOD
[[[ Sanity Tests ]]]
Verification value 0xF3DFF19F ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 49.044431 seconds
--- Testing sha1-160 "SHA1" GOOD
[[[ Sanity Tests ]]]
Verification value 0x6AF411D8 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 41.042061 seconds
--- Testing sha1_32 "SHA1, low 32 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0xB3122757 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 40.770473 seconds
--- Testing sha1_64 "SHA1, low 64 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0x995397D5 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 40.915485 seconds
--- Testing sha2-224 "SHA2-224" POOR
[[[ Sanity Tests ]]]
Verification value 0x407AA518 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 74.076167 seconds
--- Testing sha2-224_64 "SHA2-224, low 64 bits" POOR
[[[ Sanity Tests ]]]
Verification value 0xF3E40ECA ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 73.404626 seconds
--- Testing sha2-256 "SHA2-256" GOOD
[[[ Sanity Tests ]]]
Verification value 0xEBDA2FB1 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 73.167392 seconds
--- Testing sha2-256_64 "SHA2-256, low 64 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0xC1C4FA72 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 73.476056 seconds
--- Testing sha1ni "SHA1_NI (amd64 HW SHA ext)" POOR
[[[ Sanity Tests ]]]
Verification value 0x375755A4 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 12.512151 seconds
--- Testing sha1ni_32 "hardened SHA1_NI (amd64 HW SHA ext), low 32 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0xE70686CC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 12.641758 seconds
--- Testing sha2ni-256 "SHA2_NI-256 (amd64 HW SHA ext)" POOR
[[[ Sanity Tests ]]]
Verification value 0x4E3BB25E ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 12.826960 seconds
--- Testing sha2ni-256_64 "hardened SHA2_NI-256 (amd64 HW SHA ext), low 64 bits" POOR
[[[ Sanity Tests ]]]
Verification value 0xF938E80E ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 12.552149 seconds
--- Testing rmd128 "RIPEMD-128" GOOD
[[[ Sanity Tests ]]]
Verification value 0xFF576977 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 57.125165 seconds
--- Testing rmd160 "RIPEMD-160" GOOD
[[[ Sanity Tests ]]]
Verification value 0x30B37AC6 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 85.571231 seconds
--- Testing rmd256 "RIPEMD-256" GOOD
[[[ Sanity Tests ]]]
Verification value 0xEB16FAD7 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 46.390397 seconds
--- Testing blake3_c "BLAKE3 c" GOOD
[[[ Sanity Tests ]]]
Verification value 0x50E4CD91 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 23.265911 seconds
--- Testing blake2s-128 "blake2s-128" GOOD
[[[ Sanity Tests ]]]
Verification value 0xE8D8FCDF ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 49.893708 seconds
--- Testing blake2s-160 "blake2s-160" GOOD
[[[ Sanity Tests ]]]
Verification value 0xD50FF144 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 50.217896 seconds
--- Testing blake2s-224 "blake2s-224" GOOD
[[[ Sanity Tests ]]]
Verification value 0x19B36D2C ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 50.633523 seconds
--- Testing blake2s-256 "blake2s-256" GOOD
[[[ Sanity Tests ]]]
Verification value 0x841D6354 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 50.471422 seconds
--- Testing blake2s-256_64 "blake2s-256, low 64 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0x53000BB2 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 50.663604 seconds
--- Testing blake2b-160 "blake2b-160" GOOD
[[[ Sanity Tests ]]]
Verification value 0x28ADDA30 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 35.538582 seconds
--- Testing blake2b-224 "blake2b-224" GOOD
[[[ Sanity Tests ]]]
Verification value 0x101A62A4 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 35.712094 seconds
--- Testing blake2b-256 "blake2b-256" GOOD
[[[ Sanity Tests ]]]
Verification value 0xC9D8D995 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 35.159540 seconds
--- Testing blake2b-256_64 "blake2b-256, low 64 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0xCF4F7EC3 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 35.196159 seconds
--- Testing asconhashv12 "asconhashv12 256bit" GOOD
[[[ Sanity Tests ]]]
Verification value 0xA969C160 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 98.321392 seconds
--- Testing asconhashv12_64 "asconhashv12, low 64 bits" GOOD
[[[ Sanity Tests ]]]
Verification value 0xE7DEF300 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 84.382266 seconds
--- Testing sha3-256 "SHA3-256 (Keccak)" POOR
[[[ Sanity Tests ]]]
Verification value 0x21048CE3 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 154.374579 seconds
--- Testing sha3-256_64 "SHA3-256 (Keccak), low 64 bits" POOR
[[[ Sanity Tests ]]]
Verification value 0xE62E5CC0 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 153.238498 seconds
--- Testing hasshe2 "SSE2 hasshe2, 256-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xF5D39DFE ....... PASS
Running sanity check 1 . 0: 0x9A != 0x77 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000078 seconds
--- Testing poly_1_mersenne "Degree 1 Hashing mod 2^61-1" POOR
[[[ Sanity Tests ]]]
Verification value 0x0CE2F957 ....... SKIP (self- or unseeded)
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 10.586315 seconds
--- Testing poly_2_mersenne "Degree 2 Hashing mod 2^61-1" GOOD
[[[ Sanity Tests ]]]
Verification value 0x7006A38C ....... SKIP (self- or unseeded)
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 10.814571 seconds
--- Testing poly_3_mersenne "Degree 3 Hashing mod 2^61-1" GOOD
[[[ Sanity Tests ]]]
Verification value 0x283BDD96 ....... SKIP (self- or unseeded)
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 11.031576 seconds
--- Testing poly_4_mersenne "Degree 4 Hashing mod 2^61-1" GOOD
[[[ Sanity Tests ]]]
Verification value 0x79C2AE22 ....... SKIP (self- or unseeded)
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 11.219504 seconds
--- Testing tabulation "64-bit Tabulation with Multiply-Shift Mixer" GOOD
[[[ Sanity Tests ]]]
Verification value 0xB49C607C ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.868850 seconds
--- Testing tabulation32 "32-bit Tabulation with Multiply-Shift Mixer" POOR
[[[ Sanity Tests ]]]
Verification value 0x335F64EA ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.567544 seconds
--- Testing crc32_hw "SSE4.2 crc32 in HW" POOR
[[[ Sanity Tests ]]]
Verification value 0x0C7346F0 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.061866 seconds
--- Testing crc64_hw "SSE4.2 crc64 in HW" POOR
[[[ Sanity Tests ]]]
Verification value 0xE7C3FD0E ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.973446 seconds
--- Testing crc32_hw1 "Faster Adler SSE4.2 crc32 on Intel HW" POOR
[[[ Sanity Tests ]]]
Verification value 0x0C7346F0 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.396280 seconds
--- Testing crc32_pclmul "-mpclmul crc32 in asm on HW" POOR
[[[ Sanity Tests ]]]
Verification value 0x83276F66 ....... SKIP (self- or unseeded)
Running sanity check 1 . 0: 0xF5 != 0xE6 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000146 seconds
--- Testing o1hash "o(1)hash unseeded, from wyhash" POOR
[[[ Sanity Tests ]]]
Verification value 0x85051E87 ....... PASS
Running sanity check 1 . 0: 0x6C == 0x6C FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000350 seconds
--- Testing fibonacci "wordwise Fibonacci" POOR
[[[ Sanity Tests ]]]
Verification value 0xFE3BD380 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 1.863390 seconds
--- Testing k-hash32 "K-Hash mixer, 32-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0x99B3FFCD ....... PASS
Running sanity check 1 . 0: 0x69 != 0x01 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000107 seconds
--- Testing k-hash64 "K-Hash mixer, 64-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xAB5518A1 ....... PASS
Running sanity check 1 . 0: 0x23 == 0x23 FAIL !!!!!
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000092 seconds
--- Testing FNV1a "Fowler-Noll-Vo hash, 32-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xE3CBBE91 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 17.126499 seconds
--- Testing FNV1A_Totenschiff "FNV1A_Totenschiff_v1 64-bit sanmayce" POOR
[[[ Sanity Tests ]]]
Verification value 0x95D95ACF ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.615739 seconds
--- Testing FNV1A_Pippip_Yurii "FNV1A-Pippip_Yurii 32-bit sanmayce" POOR
[[[ Sanity Tests ]]]
Verification value 0xE79AE3E4 ....... PASS
Running sanity check 1 . 0: 0xA5 == 0xA5 FAIL !!!!!
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.001669 seconds
--- Testing FNV1a_YT "FNV1a-YoshimitsuTRIAD 32-bit sanmayce" POOR
[[[ Sanity Tests ]]]
Verification value 0xD8AFFD71 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.214650 seconds
--- Testing FNV64 "Fowler-Noll-Vo hash, 64-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0x103455FC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 16.938508 seconds
--- Testing FNV128 "Go variant of FNV, 128-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xBCAA1426 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 33.938590 seconds
--- Testing FNV2 "wordwise FNV" POOR
[[[ Sanity Tests ]]]
Verification value 0x1967C625 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 2.422426 seconds
--- Testing fletcher2 "fletcher2 ZFS" POOR
[[[ Sanity Tests ]]]
Verification value 0x890767C0 ....... PASS
Running sanity check 1 . 0: 0x7A == 0x7A FAIL !!!!!
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000246 seconds
--- Testing fletcher4 "fletcher4 ZFS" POOR
[[[ Sanity Tests ]]]
Verification value 0x890767C0 ....... PASS
Running sanity check 1 . 0: 0x7A == 0x7A FAIL !!!!!
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000278 seconds
--- Testing bernstein "Bernstein, 32-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xBDB4B640 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 13.091307 seconds
--- Testing sdbm "sdbm as in perl5" POOR
[[[ Sanity Tests ]]]
Verification value 0x582AF769 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 16.833339 seconds
--- Testing x17 "x17" POOR
[[[ Sanity Tests ]]]
Verification value 0x8128E14C ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 16.657329 seconds
--- Testing libiberty "libiberty htab_hash_string" POOR
[[[ Sanity Tests ]]]
Verification value 0x584FBC20 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 20.935174 seconds
--- Testing gcc "gcc libcpp" POOR
[[[ Sanity Tests ]]]
Verification value 0xC6239327 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 20.874960 seconds
--- Testing JenkinsOOAT "Bob Jenkins' OOAT as in perl 5.18" POOR
[[[ Sanity Tests ]]]
Verification value 0x83E133DA ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 21.780754 seconds
--- Testing JenkinsOOAT_perl "Bob Jenkins' OOAT as in old perl5" POOR
[[[ Sanity Tests ]]]
Verification value 0xEE05869B ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 21.590578 seconds
--- Testing pearsonhash64 "Pearson hash, 64-bit SSSE3" POOR
[[[ Sanity Tests ]]]
Verification value 0x12E4C8CD ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 28.336952 seconds
--- Testing pearsonhash128 "Pearson hash, 128-bit SSSE3, low 64-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0x6CCBB7B3 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 28.535973 seconds
--- Testing pearsonhash256 "Pearson hash, 256-bit SSSE3, low 64-bit" POOR
[[[ Sanity Tests ]]]
Verification value 0x7F8BEB21 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 29.824615 seconds
--- Testing pearsonbhash64 "Pearson block hash, 64-bit" GOOD
[[[ Sanity Tests ]]]
Verification value 0xB6FF2DFC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 8.778765 seconds
--- Testing pearsonbhash128 "Pearson block hash, 128-bit, low 64-bit" GOOD
[[[ Sanity Tests ]]]
Verification value 0x6BEFE6EA ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 10.151822 seconds
--- Testing pearsonbhash256 "Pearson block hash, 256-bit, low 64-bit" GOOD
[[[ Sanity Tests ]]]
Verification value 0x999B3C19 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 12.232837 seconds
--- Testing VHASH_32 "VHASH_32 by Ted Krovetz and Wei Dai" POOR
[[[ Sanity Tests ]]]
Verification value 0xF0077651 ....... PASS
Running sanity check 1 . 0: 0x08 != 0xA1 FAIL !!!!!
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000178 seconds
--- Testing VHASH_64 "VHASH_64 by Ted Krovetz and Wei Dai" POOR
[[[ Sanity Tests ]]]
Verification value 0xF97D84FE ....... PASS
Running sanity check 1 . 0: 0x08 != 0xA1 FAIL !!!!!
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 0.000177 seconds
--- Testing MicroOAAT "Small non-multiplicative OAAT (by funny-falcon)" POOR
[[[ Sanity Tests ]]]
Verification value 0x16F1BA97 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 21.065298 seconds
--- Testing farsh32 "FARSH 32bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xBCDE332C ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.454978 seconds
--- Testing farsh64 "FARSH 64bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xDE2FDAEE ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 5.182893 seconds
--- Testing farsh128 "FARSH 128bit" POOR
[[[ Sanity Tests ]]]
Verification value 0x82B6CBEC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 10.398208 seconds
--- Testing farsh256 "FARSH 256bit" POOR
[[[ Sanity Tests ]]]
Verification value 0xFEBEA0BC ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 17.310403 seconds
--- Testing jodyhash32 "jodyhash, 32-bit (v5)" POOR
[[[ Sanity Tests ]]]
Verification value 0xFB47D60D ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 8.360707 seconds
--- Testing jodyhash64 "jodyhash, 64-bit (v5)" POOR
[[[ Sanity Tests ]]]
Verification value 0x9F09E57F ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 3.938239 seconds
--- Testing lookup3 "Bob Jenkins' lookup3" POOR
[[[ Sanity Tests ]]]
Verification value 0x3D83917A ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 6.477125 seconds
--- Testing superfast "Paul Hsieh's SuperFastHash" POOR
[[[ Sanity Tests ]]]
Verification value 0x0C80403A ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest . FAIL !!!!!
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 7.189529 seconds
--- Testing MurmurOAAT "Murmur one-at-a-time" POOR
[[[ Sanity Tests ]]]
Verification value 0x5363BD98 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001
Verification value is 0x00000001 - Testing took 26.550819 seconds
--- Testing Crap8 "Crap8" POOR
[[[ Sanity Tests ]]]
Verification value 0x743E97A1 ....... PASS
Running sanity check 1 .......... PASS
Running AppendedZeroesTest .......... PASS
Input vcode 0x00000001, Output vcode 0x00000001, Result vcode 0x00000001