replaced javascript-md5-library with method in helma.util.MD5Encoder

This commit is contained in:
stefanp 2002-03-26 12:47:49 +00:00
parent 7d607250b6
commit fb264c63e5

View file

@ -3,7 +3,7 @@ if ( checkAddress()==false ) return;
if ( checkAuth()==false ) return;
if ( req.data.value!=null ) {
res.write ( calcMD5(req.data.value) );
res.write ( Packages.helma.util.MD5Encoder.encode(req.data.value) );
} else {
res.write ( '<html><head></head><body><form method=post action=makekey><input type=password name=value><input type=submit></form></body></html>' );
}