fixed sum's move to contrib-math

cvs
Doug Coleman 2006-01-13 08:05:02 +00:00
parent 10359f2d96
commit 1bafed23f1
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
IN: crypto IN: crypto
USING: parser sequences words compiler ; USING: parser sequences words compiler ;
[ [
"contrib/math/load.factor"
"contrib/crypto/common.factor" "contrib/crypto/common.factor"
"contrib/crypto/md5.factor" "contrib/crypto/md5.factor"
"contrib/crypto/sha1.factor" "contrib/crypto/sha1.factor"

View File

@ -1,6 +1,6 @@
IN: crypto-internals IN: crypto-internals
USING: kernel io strings sequences namespaces math prettyprint USING: kernel io strings sequences namespaces math prettyprint
test parser lists vectors hashtables kernel-internals crypto ; test parser lists vectors hashtables kernel-internals math-contrib crypto ;
! Implemented according to RFC 3174. ! Implemented according to RFC 3174.