1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Auto generated from "HMAC_RIPEMD160.txt"
package require tls
package require tcltest
tcltest::testConstraint HMAC [expr {[lsearch -nocase [tls::macs] HMAC] > -1}]
tcltest::testConstraint RIPEMD160 [expr {[lsearch -nocase [tls::digests] RIPEMD160] > -1}]
tcltest::test MAC_HMAC-RIPEMD160-1.1 {HMAC_RIPEMD160} \
-constraints {HMAC RIPEMD160 } \
-setup {} \
-body {string range [tls::hmac -hex -digest RIPEMD160 -key [binary decode hex 0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b] -data "Hi There"] 0 39} \
-match exact -result 24cb4bd67d20fc1a5d2ed7732dcc39377f0a5668
|
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Auto generated from "HMAC_RIPEMD160.txt"
lappend auto_path [file dirname [file dirname [file dirname [file dirname [file join [pwd] [info script]]]]]]
package require tls
package require tcltest
tcltest::testConstraint HMAC [expr {[lsearch -nocase [tls::macs] HMAC] > -1}]
tcltest::testConstraint RIPEMD160 [expr {[lsearch -nocase [tls::digests] RIPEMD160] > -1}]
catch {tls::provider legacy}
tcltest::test MAC_HMAC-RIPEMD160-1.1 {HMAC_RIPEMD160} \
-constraints {HMAC RIPEMD160 } \
-setup {} \
-body {string range [tls::hmac -hex -digest RIPEMD160 -key [binary decode hex 0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b] -data "Hi There"] 0 39} \
-match exact -result 24cb4bd67d20fc1a5d2ed7732dcc39377f0a5668
|