Differences From Artifact [aa86c2ee6b]:
- Executable file build/test/test.tcl — part of check-in [54a51a61b6] at 2018-07-01 22:04:45 on branch trunk — Added support for hashing arbitrary data (user: rkeene, size: 2465) [annotate] [blame] [check-ins using]
To Artifact [e7f0ffae87]:
- Executable file build/test/test.tcl — part of check-in [28166744a1] at 2018-07-01 22:12:46 on branch trunk — Start of support for key generation (user: rkeene, size: 2570) [annotate] [blame] [check-ins using]
︙ | |||
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | + + + + + + | puts "\[FAIL\] Exp: $hash_expected" return false } return true } proc test_keygeneration {} { set key [::nano::internal::generateKey] puts "key=$key" } set tests { signatures hashing keygeneration } foreach test $tests { if {![test_$test]} { puts "FAILED test $test" exit 1 } |
︙ |