/usr/share/amsn/utils/md4/md4.tcl is in amsn-data 0.98.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # md4.tcl - Copyright (C) 2003 Pat Thoyts <patthoyts@users.sourceforge.net>
#
# This is a Tcl-only implementation of the MD4 hash algorithm as described in
# RFC 1320 ( http://www.ietf.org/rfc/rfc1320.txt )
#
# -------------------------------------------------------------------------
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# -------------------------------------------------------------------------
#
# $Id: md4.tcl,v 1.20 2008/04/29 10:07:45 patthoyts Exp $
package require Tcl 8.2; # tcl minimum version
catch {package require md4c 1.0}; # tcllib critcl alternative
# @mdgen EXCLUDE: md4c.tcl
namespace eval ::md4 {
variable version 1.0.5
variable rcsid {$Id: md4.tcl,v 1.20 2008/04/29 10:07:45 patthoyts Exp $}
variable accel
array set accel {critcl 0 cryptkit 0}
namespace export md4 hmac MD4Init MD4Update MD4Final
variable uid
if {![info exists uid]} {
set uid 0
}
}
# -------------------------------------------------------------------------
# MD4Init - create and initialize an MD4 state variable. This will be
# cleaned up when we call MD4Final
#
proc ::md4::MD4Init {} {
variable uid
variable accel
set token [namespace current]::[incr uid]
upvar #0 $token state
# RFC1320:3.3 - Initialize MD4 state structure
array set state \
[list \
A [expr {0x67452301}] \
B [expr {0xefcdab89}] \
C [expr {0x98badcfe}] \
D [expr {0x10325476}] \
n 0 i "" ]
if {$accel(cryptkit)} {
cryptkit::cryptCreateContext state(ckctx) CRYPT_UNUSED CRYPT_ALGO_MD4
}
return $token
}
proc ::md4::MD4Update {token data} {
variable accel
upvar #0 $token state
if {$accel(critcl)} {
if {[info exists state(md4c)]} {
set state(md4c) [md4c $data $state(md4c)]
} else {
set state(md4c) [md4c $data]
}
return
} elseif {[info exists state(ckctx)]} {
if {[string length $data] > 0} {
cryptkit::cryptEncrypt $state(ckctx) $data
}
return
}
# Update the state values
incr state(n) [string length $data]
append state(i) $data
# Calculate the hash for any complete blocks
set len [string length $state(i)]
for {set n 0} {($n + 64) <= $len} {} {
MD4Hash $token [string range $state(i) $n [incr n 64]]
}
# Adjust the state for the blocks completed.
set state(i) [string range $state(i) $n end]
return
}
proc ::md4::MD4Final {token} {
upvar #0 $token state
if {[info exists state(md4c)]} {
set r $state(md4c)
unset state
return $r
} elseif {[info exists state(ckctx)]} {
cryptkit::cryptEncrypt $state(ckctx) ""
cryptkit::cryptGetAttributeString $state(ckctx) \
CRYPT_CTXINFO_HASHVALUE r 16
cryptkit::cryptDestroyContext $state(ckctx)
# If nothing was hashed, we get no r variable set!
if {[info exists r]} {
unset state
return $r
}
}
# RFC1320:3.1 - Padding
#
set len [string length $state(i)]
set pad [expr {56 - ($len % 64)}]
if {$len % 64 > 56} {
incr pad 64
}
if {$pad == 0} {
incr pad 64
}
append state(i) [binary format a$pad \x80]
# RFC1320:3.2 - Append length in bits as little-endian wide int.
append state(i) [binary format ii [expr {8 * $state(n)}] 0]
# Calculate the hash for the remaining block.
set len [string length $state(i)]
for {set n 0} {($n + 64) <= $len} {} {
MD4Hash $token [string range $state(i) $n [incr n 64]]
}
# RFC1320:3.5 - Output
set r [bytes $state(A)][bytes $state(B)][bytes $state(C)][bytes $state(D)]
unset state
return $r
}
# -------------------------------------------------------------------------
# HMAC Hashed Message Authentication (RFC 2104)
#
# hmac = H(K xor opad, H(K xor ipad, text))
#
proc ::md4::HMACInit {K} {
# Key K is adjusted to be 64 bytes long. If K is larger, then use
# the MD4 digest of K and pad this instead.
set len [string length $K]
if {$len > 64} {
set tok [MD4Init]
MD4Update $tok $K
set K [MD4Final $tok]
set len [string length $K]
}
set pad [expr {64 - $len}]
append K [string repeat \0 $pad]
# Cacluate the padding buffers.
set Ki {}
set Ko {}
binary scan $K i16 Ks
foreach k $Ks {
append Ki [binary format i [expr {$k ^ 0x36363636}]]
append Ko [binary format i [expr {$k ^ 0x5c5c5c5c}]]
}
set tok [MD4Init]
MD4Update $tok $Ki; # initialize with the inner pad
# preserve the Ko value for the final stage.
# FRINK: nocheck
set [subst $tok](Ko) $Ko
return $tok
}
proc ::md4::HMACUpdate {token data} {
MD4Update $token $data
return
}
proc ::md4::HMACFinal {token} {
# FRINK: nocheck
variable $token
upvar 0 $token state
set tok [MD4Init]; # init the outer hashing function
MD4Update $tok $state(Ko); # prepare with the outer pad.
MD4Update $tok [MD4Final $token]; # hash the inner result
return [MD4Final $tok]
}
# -------------------------------------------------------------------------
set ::md4::MD4Hash_body {
variable $token
upvar 0 $token state
# RFC1320:3.4 - Process Message in 16-Word Blocks
binary scan $msg i* blocks
foreach {X0 X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15} $blocks {
set A $state(A)
set B $state(B)
set C $state(C)
set D $state(D)
# Round 1
# Let [abcd k s] denote the operation
# a = (a + F(b,c,d) + X[k]) <<< s.
# Do the following 16 operations.
# [ABCD 0 3] [DABC 1 7] [CDAB 2 11] [BCDA 3 19]
set A [expr {($A + [F $B $C $D] + $X0) <<< 3}]
set D [expr {($D + [F $A $B $C] + $X1) <<< 7}]
set C [expr {($C + [F $D $A $B] + $X2) <<< 11}]
set B [expr {($B + [F $C $D $A] + $X3) <<< 19}]
# [ABCD 4 3] [DABC 5 7] [CDAB 6 11] [BCDA 7 19]
set A [expr {($A + [F $B $C $D] + $X4) <<< 3}]
set D [expr {($D + [F $A $B $C] + $X5) <<< 7}]
set C [expr {($C + [F $D $A $B] + $X6) <<< 11}]
set B [expr {($B + [F $C $D $A] + $X7) <<< 19}]
# [ABCD 8 3] [DABC 9 7] [CDAB 10 11] [BCDA 11 19]
set A [expr {($A + [F $B $C $D] + $X8) <<< 3}]
set D [expr {($D + [F $A $B $C] + $X9) <<< 7}]
set C [expr {($C + [F $D $A $B] + $X10) <<< 11}]
set B [expr {($B + [F $C $D $A] + $X11) <<< 19}]
# [ABCD 12 3] [DABC 13 7] [CDAB 14 11] [BCDA 15 19]
set A [expr {($A + [F $B $C $D] + $X12) <<< 3}]
set D [expr {($D + [F $A $B $C] + $X13) <<< 7}]
set C [expr {($C + [F $D $A $B] + $X14) <<< 11}]
set B [expr {($B + [F $C $D $A] + $X15) <<< 19}]
# Round 2.
# Let [abcd k s] denote the operation
# a = (a + G(b,c,d) + X[k] + 5A827999) <<< s
# Do the following 16 operations.
# [ABCD 0 3] [DABC 4 5] [CDAB 8 9] [BCDA 12 13]
set A [expr {($A + [G $B $C $D] + $X0 + 0x5a827999) <<< 3}]
set D [expr {($D + [G $A $B $C] + $X4 + 0x5a827999) <<< 5}]
set C [expr {($C + [G $D $A $B] + $X8 + 0x5a827999) <<< 9}]
set B [expr {($B + [G $C $D $A] + $X12 + 0x5a827999) <<< 13}]
# [ABCD 1 3] [DABC 5 5] [CDAB 9 9] [BCDA 13 13]
set A [expr {($A + [G $B $C $D] + $X1 + 0x5a827999) <<< 3}]
set D [expr {($D + [G $A $B $C] + $X5 + 0x5a827999) <<< 5}]
set C [expr {($C + [G $D $A $B] + $X9 + 0x5a827999) <<< 9}]
set B [expr {($B + [G $C $D $A] + $X13 + 0x5a827999) <<< 13}]
# [ABCD 2 3] [DABC 6 5] [CDAB 10 9] [BCDA 14 13]
set A [expr {($A + [G $B $C $D] + $X2 + 0x5a827999) <<< 3}]
set D [expr {($D + [G $A $B $C] + $X6 + 0x5a827999) <<< 5}]
set C [expr {($C + [G $D $A $B] + $X10 + 0x5a827999) <<< 9}]
set B [expr {($B + [G $C $D $A] + $X14 + 0x5a827999) <<< 13}]
# [ABCD 3 3] [DABC 7 5] [CDAB 11 9] [BCDA 15 13]
set A [expr {($A + [G $B $C $D] + $X3 + 0x5a827999) <<< 3}]
set D [expr {($D + [G $A $B $C] + $X7 + 0x5a827999) <<< 5}]
set C [expr {($C + [G $D $A $B] + $X11 + 0x5a827999) <<< 9}]
set B [expr {($B + [G $C $D $A] + $X15 + 0x5a827999) <<< 13}]
# Round 3.
# Let [abcd k s] denote the operation
# a = (a + H(b,c,d) + X[k] + 6ED9EBA1) <<< s.
# Do the following 16 operations.
# [ABCD 0 3] [DABC 8 9] [CDAB 4 11] [BCDA 12 15]
set A [expr {($A + [H $B $C $D] + $X0 + 0x6ed9eba1) <<< 3}]
set D [expr {($D + [H $A $B $C] + $X8 + 0x6ed9eba1) <<< 9}]
set C [expr {($C + [H $D $A $B] + $X4 + 0x6ed9eba1) <<< 11}]
set B [expr {($B + [H $C $D $A] + $X12 + 0x6ed9eba1) <<< 15}]
# [ABCD 2 3] [DABC 10 9] [CDAB 6 11] [BCDA 14 15]
set A [expr {($A + [H $B $C $D] + $X2 + 0x6ed9eba1) <<< 3}]
set D [expr {($D + [H $A $B $C] + $X10 + 0x6ed9eba1) <<< 9}]
set C [expr {($C + [H $D $A $B] + $X6 + 0x6ed9eba1) <<< 11}]
set B [expr {($B + [H $C $D $A] + $X14 + 0x6ed9eba1) <<< 15}]
# [ABCD 1 3] [DABC 9 9] [CDAB 5 11] [BCDA 13 15]
set A [expr {($A + [H $B $C $D] + $X1 + 0x6ed9eba1) <<< 3}]
set D [expr {($D + [H $A $B $C] + $X9 + 0x6ed9eba1) <<< 9}]
set C [expr {($C + [H $D $A $B] + $X5 + 0x6ed9eba1) <<< 11}]
set B [expr {($B + [H $C $D $A] + $X13 + 0x6ed9eba1) <<< 15}]
# [ABCD 3 3] [DABC 11 9] [CDAB 7 11] [BCDA 15 15]
set A [expr {($A + [H $B $C $D] + $X3 + 0x6ed9eba1) <<< 3}]
set D [expr {($D + [H $A $B $C] + $X11 + 0x6ed9eba1) <<< 9}]
set C [expr {($C + [H $D $A $B] + $X7 + 0x6ed9eba1) <<< 11}]
set B [expr {($B + [H $C $D $A] + $X15 + 0x6ed9eba1) <<< 15}]
# Then perform the following additions. (That is, increment each
# of the four registers by the value it had before this block
# was started.)
incr state(A) $A
incr state(B) $B
incr state(C) $C
incr state(D) $D
}
return
}
proc ::md4::byte {n v} {expr {((0xFF << (8 * $n)) & $v) >> (8 * $n)}}
proc ::md4::bytes {v} {
#format %c%c%c%c [byte 0 $v] [byte 1 $v] [byte 2 $v] [byte 3 $v]
format %c%c%c%c \
[expr {0xFF & $v}] \
[expr {(0xFF00 & $v) >> 8}] \
[expr {(0xFF0000 & $v) >> 16}] \
[expr {((0xFF000000 & $v) >> 24) & 0xFF}]
}
# 32bit rotate-left
proc ::md4::<<< {v n} {
return [expr {((($v << $n) \
| (($v >> (32 - $n)) \
& (0x7FFFFFFF >> (31 - $n))))) \
& 0xFFFFFFFF}]
}
# Convert our <<< pseudo-operator into a procedure call.
regsub -all -line \
{\[expr {(.*) <<< (\d+)}\]} \
$::md4::MD4Hash_body \
{[<<< [expr {\1}] \2]} \
::md4::MD4Hash_body
# RFC1320:3.4 - function F
proc ::md4::F {X Y Z} {
return [expr {($X & $Y) | ((~$X) & $Z)}]
}
# Inline the F function
regsub -all -line \
{\[F (\$[ABCD]) (\$[ABCD]) (\$[ABCD])\]} \
$::md4::MD4Hash_body \
{( (\1 \& \2) | ((~\1) \& \3) )} \
::md4::MD4Hash_body
# RFC1320:3.4 - function G
proc ::md4::G {X Y Z} {
return [expr {($X & $Y) | ($X & $Z) | ($Y & $Z)}]
}
# Inline the G function
regsub -all -line \
{\[G (\$[ABCD]) (\$[ABCD]) (\$[ABCD])\]} \
$::md4::MD4Hash_body \
{((\1 \& \2) | (\1 \& \3) | (\2 \& \3))} \
::md4::MD4Hash_body
# RFC1320:3.4 - function H
proc ::md4::H {X Y Z} {
return [expr {$X ^ $Y ^ $Z}]
}
# Inline the H function
regsub -all -line \
{\[H (\$[ABCD]) (\$[ABCD]) (\$[ABCD])\]} \
$::md4::MD4Hash_body \
{(\1 ^ \2 ^ \3)} \
::md4::MD4Hash_body
# Define the MD4 hashing procedure with inline functions.
proc ::md4::MD4Hash {token msg} $::md4::MD4Hash_body
unset ::md4::MD4Hash_body
# -------------------------------------------------------------------------
if {[package provide Trf] != {}} {
interp alias {} ::md4::Hex {} ::hex -mode encode --
} else {
proc ::md4::Hex {data} {
binary scan $data H* result
return [string toupper $result]
}
}
# -------------------------------------------------------------------------
# LoadAccelerator --
#
# This package can make use of a number of compiled extensions to
# accelerate the digest computation. This procedure manages the
# use of these extensions within the package. During normal usage
# this should not be called, but the test package manipulates the
# list of enabled accelerators.
#
proc ::md4::LoadAccelerator {name} {
variable accel
set r 0
switch -exact -- $name {
critcl {
if {![catch {package require tcllibc}]
|| ![catch {package require md4c}]} {
set r [expr {[info command ::md4::md4c] != {}}]
}
}
cryptkit {
if {![catch {package require cryptkit}]} {
set r [expr {![catch {cryptkit::cryptInit}]}]
}
}
#trf {
# if {![catch {package require Trf}]} {
# set r [expr {![catch {::md4 aa} msg]}]
# }
#}
default {
return -code error "invalid accelerator package:\
must be one of [join [array names accel] {, }]"
}
}
set accel($name) $r
}
# -------------------------------------------------------------------------
# Description:
# Pop the nth element off a list. Used in options processing.
#
proc ::md4::Pop {varname {nth 0}} {
upvar $varname args
set r [lindex $args $nth]
set args [lreplace $args $nth $nth]
return $r
}
# -------------------------------------------------------------------------
# fileevent handler for chunked file hashing.
#
proc ::md4::Chunk {token channel {chunksize 4096}} {
# FRINK: nocheck
variable $token
upvar 0 $token state
if {[eof $channel]} {
fileevent $channel readable {}
set state(reading) 0
}
MD4Update $token [read $channel $chunksize]
}
# -------------------------------------------------------------------------
proc ::md4::md4 {args} {
array set opts {-hex 0 -filename {} -channel {} -chunksize 4096}
while {[string match -* [set option [lindex $args 0]]]} {
switch -glob -- $option {
-hex { set opts(-hex) 1 }
-file* { set opts(-filename) [Pop args 1] }
-channel { set opts(-channel) [Pop args 1] }
-chunksize { set opts(-chunksize) [Pop args 1] }
default {
if {[llength $args] == 1} { break }
if {[string compare $option "--"] == 0 } { Pop args; break }
set err [join [lsort [array names opts]] ", "]
return -code error "bad option $option:\
must be one of $err"
}
}
Pop args
}
if {$opts(-filename) != {}} {
set opts(-channel) [open $opts(-filename) r]
fconfigure $opts(-channel) -translation binary
}
if {$opts(-channel) == {}} {
if {[llength $args] != 1} {
return -code error "wrong # args:\
should be \"md4 ?-hex? -filename file | string\""
}
set tok [MD4Init]
MD4Update $tok [lindex $args 0]
set r [MD4Final $tok]
} else {
set tok [MD4Init]
# FRINK: nocheck
set [subst $tok](reading) 1
fileevent $opts(-channel) readable \
[list [namespace origin Chunk] \
$tok $opts(-channel) $opts(-chunksize)]
vwait [subst $tok](reading)
set r [MD4Final $tok]
# If we opened the channel - we should close it too.
if {$opts(-filename) != {}} {
close $opts(-channel)
}
}
if {$opts(-hex)} {
set r [Hex $r]
}
return $r
}
# -------------------------------------------------------------------------
proc ::md4::hmac {args} {
array set opts {-hex 0 -filename {} -channel {} -chunksize 4096}
while {[string match -* [set option [lindex $args 0]]]} {
switch -glob -- $option {
-key { set opts(-key) [Pop args 1] }
-hex { set opts(-hex) 1 }
-file* { set opts(-filename) [Pop args 1] }
-channel { set opts(-channel) [Pop args 1] }
-chunksize { set opts(-chunksize) [Pop args 1] }
default {
if {[llength $args] == 1} { break }
if {[string compare $option "--"] == 0 } { Pop args; break }
set err [join [lsort [array names opts]] ", "]
return -code error "bad option $option:\
must be one of $err"
}
}
Pop args
}
if {![info exists opts(-key)]} {
return -code error "wrong # args:\
should be \"hmac ?-hex? -key key -filename file | string\""
}
if {$opts(-filename) != {}} {
set opts(-channel) [open $opts(-filename) r]
fconfigure $opts(-channel) -translation binary
}
if {$opts(-channel) == {}} {
if {[llength $args] != 1} {
return -code error "wrong # args:\
should be \"hmac ?-hex? -key key -filename file | string\""
}
set tok [HMACInit $opts(-key)]
HMACUpdate $tok [lindex $args 0]
set r [HMACFinal $tok]
} else {
set tok [HMACInit $opts(-key)]
# FRINK: nocheck
set [subst $tok](reading) 1
fileevent $opts(-channel) readable \
[list [namespace origin Chunk] \
$tok $opts(-channel) $opts(-chunksize)]
vwait [subst $tok](reading)
set r [HMACFinal $tok]
# If we opened the channel - we should close it too.
if {$opts(-filename) != {}} {
close $opts(-channel)
}
}
if {$opts(-hex)} {
set r [Hex $r]
}
return $r
}
# -------------------------------------------------------------------------
# Try and load a compiled extension to help.
namespace eval ::md4 {
foreach e {critcl cryptkit} { if {[LoadAccelerator $e]} { break } }
unset e
}
package provide md4 $::md4::version
# -------------------------------------------------------------------------
# Local Variables:
# mode: tcl
# indent-tabs-mode: nil
# End:
|