3 Sequence asChars := method(
5 self foreach(i, v, b write(v asString, " "))
10 BlowfishTest
:= UnitTest
clone do(
11 type := "BlowfishTest"
14 s
:= "This is a test."
16 es
:= Blowfish
clone setKey("secret") encrypt(s
)
17 ds
:= Blowfish
clone setKey("secret") decrypt(es
)