Tcl Library Source Code

Artifact [dbc76a1008]
Login

Artifact dbc76a100894936c8326582516cc04156c97ec84:


# ripemd160.test - Copyright (C) 2003 Pat Thoyts <[email protected]>
#
# $Id: ripemd160.test,v 1.2 2004/12/03 02:23:40 patthoyts Exp $

# -------------------------------------------------------------------------
# Initialise the test package
#
if {[lsearch [namespace children] ::tcltest] == -1} {
    package require tcltest
    namespace import ::tcltest::*
}

# -------------------------------------------------------------------------
# Ensure we test _this_ local copy and one installed somewhere else.
#
package forget ripemd160
catch {namespace delete ::ripemd::ripemd160}
if {[catch {source [file join [file dirname [info script]] ripemd160.tcl]} msg]} {
    puts "skipped [file tail [info script]]: $msg"
    return
}

package require ripemd160

if {$::ripemd::::ripemd160::usetrf} {
    puts "ripemd160 [package provide ripemd160] (Trf based)"
} else {
    puts "ripemd160 [package provide ripemd160] (pure Tcl)"
}

# -------------------------------------------------------------------------
# Setup any constraints
#

# -------------------------------------------------------------------------
# Now the package specific tests....
# -------------------------------------------------------------------------

# Test vectors
#
set vectors {
    1 {}    {9C1185A5C5E9FC54612808977EE8F548B2258D31}
    2 {a}   {0BDC9D2D256B3EE9DAAE347BE6F4DC835A467FFE}
    3 {abc} {8EB208F7E05D987A9B044A8E98C6B087F15A0BFC}
    4 {message digest} {5D0689EF49D2FAE572B881B123A85FFA21595F36}
    5 {abcdefghijklmnopqrstuvwxyz} {F71C27109C692C1B56BBDCEB5B9D2865B3708DBC}
    6 {abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq}
      {12A053384A9C0C88E405A06C27DCF49ADA62EB2B}
    7 {ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789}
      {B0E20B6E3116640286ED3A87A5713079B21F5189}
    8 {-} {4C3B58AA82048B1DB748E6B816165C87C551E013}
    9 {-error} {72A9EF23F2AF0F88C39F54494347E8C63ACD067F}
}
lappend vectors \
    10 [string repeat 1234567890 8] {9B752E45573D4B39F4DBD3323CAB82BF63326BFB}

foreach {n msg hash} $vectors {
    test ripemd160-1.$n {RIPEMD-160 test strings} {
        ::ripemd::ripemd160 -hex -- $msg
    } $hash
}

# If our implementation is managing to use Trf then check the pure tcl
# version as well.
if {$::ripemd::ripemd160::usetrf} {
    set ::ripemd::ripemd160::usetrf 0
    foreach {n msg hash} $vectors {
        test ripemd160-2.$n {RIPEMD-160 pure-Tcl} {
            ::ripemd::ripemd160 -hex -- $msg
        } $hash
    }
    set ::ripemd::ripemd160::usetrf 1
}

# -------------------------------------------------------------------------
# HMAC test vectors

set key [binary format H* 00112233445566778899aabbccddeeff01234567]

set vectors {
    1 {}    {CF387677BFDA8483E63B57E06C3B5ECD8B7FC055}
    2 {a}   {0D351D71B78E36DBB7391C810A0D2B6240DDBAFC}
    3 {abc} {F7EF288CB1BBCC6160D76507E0A3BBF712FB67D6}
    4 {message digest} {F83662CC8D339C227E600FCD636C57D2571B1C34}
    5 {abcdefghijklmnopqrstuvwxyz} {843D1C4EB880AC8AC0C9C95696507957D0155DDB}
    6 {abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq}
      {60F5EF198A2DD5745545C1F0C47AA3FB5776F881}
    7 {ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789}
      {E49C136A9E5627E0681B808A3B97E6A6E661AE79}
    8 {-} {021B4324B528683C60A868F670E89E0BA2B0E743}
}
lappend vectors \
    9 [string repeat 1234567890 8] {31BE3CC98CEE37B79B0619E3E1C2BE4F1AA56E6C}

foreach {n msg hash} $vectors {
    test ripemd160-3.$n {HMAC RIPEMD-160 test vectors} {
        ::ripemd::hmac160 -hex -key $key -- $msg
    } $hash
}

# If our implementation is managing to use Trf then check the pure tcl
# version as well.
if {$::ripemd::ripemd160::usetrf} {
    set ::ripemd::ripemd160::usetrf 0
    foreach {n msg hash} $vectors {
        test ripemd160-4.$n {HMAC RIPEMD-160 pure-Tcl} {
            ::ripemd::hmac160 -hex -key $key -- $msg
        } $hash
    }
    set ::ripemd::ripemd160::usetrf 1
}

# -------------------------------------------------------------------------
# HMAC test vectors - key 2

set key [binary format H* 0123456789abcdeffedcba987654321000112233]

set vectors {
    1 {}    {FE69A66C7423EEA9C8FA2EFF8D9DAFB4F17A62F5}
    2 {a}   {85743E899BC82DBFA36FAAA7A25B7CFD372432CD}
    3 {abc} {6E4AFD501FA6B4A1823CA3B10BD9AA0BA97BA182}
    4 {message digest} {2E066E624BADB76A184C8F90FBA053330E650E92}
    5 {abcdefghijklmnopqrstuvwxyz} {07E942AA4E3CD7C04DEDC1D46E2E8CC4C741B3D9}
    6 {abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq}
      {B6582318DDCFB67A53A67D676B8AD869ADED629A}
    7 {ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789}
      {F1BE3EE877703140D34F97EA1AB3A07C141333E2}
}
lappend vectors \
    8 [string repeat 1234567890 8] {85F164703E61A63131BE7E45958E0794123904F9}

foreach {n msg hash} $vectors {
    test ripemd160-5.$n {HMAC RIPEMD-160 test vectors} {
        ::ripemd::hmac160 -hex -key $key $msg
    } $hash
}

# If our implementation is managing to use Trf then check the pure tcl
# version as well.
if {$::ripemd::ripemd160::usetrf} {
    set ::ripemd::ripemd160::usetrf 0
    foreach {n msg hash} $vectors {
        test ripemd160-6.$n {HMAC RIPEMD-160 pure-Tcl} {
            ::ripemd::hmac160 -hex -key $key $msg
        } $hash
    }
    set ::ripemd::ripemd160::usetrf 1
}

# -------------------------------------------------------------------------
# RFC 2286 has a set of test vectors for HMAC-RIPEMD168 and 128.
# This is those test vectors...
# -------------------------------------------------------------------------

set vectors \
    [list \
         1 [string repeat \x0b 20] "Hi There" \
         24CB4BD67D20FC1A5D2ED7732DCC39377F0A5668 \
         2 "Jefe" "what do ya want for nothing?" \
         DDA6C0213A485A9E24F4742064A7F033B43C4069 \
         3 [string repeat \xaa 20] [string repeat \xdd 50] \
         B0B105360DE759960AB4F35298E116E295D8E7C1 \
         4 \
         [binary format H* 0102030405060708090a0b0c0d0e0f10111213141516171819]\
         [string repeat \xcd 50] \
         D5CA862F4D21D5E610E18B4CF1BEB97A4365ECF4 \
         5 [string repeat \x0c 20] "Test With Truncation" \
         7619693978F91D90539AE786500FF3D8E0518E39 \
         6 [string repeat \xaa 80] \
         "Test Using Larger Than Block-Size Key - Hash Key First" \
         6466CA07AC5EAC29E1BD523E5ADA7605B791FD8B \
         7 [string repeat \xaa 80] \
         "Test Using Larger Than Block-Size Key and Larger Than One Block-Size Data" \
         69EA60798D71616CCE5FD0871E23754CD75D5A0A \
        ]
foreach {n key msg hash} $vectors {
    test ripemd160-7.$n {RFC2286 test vectors for HMAC-RIPEMD160} {
        ::ripemd::hmac160 -hex -key $key -- $msg
    } $hash
}

if {$::ripemd::ripemd160::usetrf} {
    set ::ripemd::ripemd160::usetrf 0
    foreach {n key msg hash} $vectors {
        test ripemd160-8.$n {RFC2286 test vectors for HMAC-RIPEMD160 pure-Tcl} {
            ::ripemd::hmac160 -hex -key $key -- $msg
        } $hash
    }
    set ::ripemd::ripemd160::usetrf 1
}    

# -------------------------------------------------------------------------

::tcltest::cleanupTests

# -------------------------------------------------------------------------
# Local Variables:
#   mode: tcl
#   indent-tabs-mode: nil
# End: