You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
599 B
18 lines
599 B
define(['doh', '../../digests/_base', '../../digests/MD5'], function(doh, ded, MD5){ |
|
var message="The rain in Spain falls mainly on the plain."; |
|
var base64="OUhxbVZ1Mtmu4zx9LzS5cA=="; |
|
var hex="3948716d567532d9aee33c7d2f34b970"; |
|
var s="9HqmVu2\xD9\xAE\xE3<}/4\xB9p"; |
|
|
|
doh.register("dojox.encoding.tests.digests.MD5", [ |
|
function testBase64Compute(t){ |
|
t.assertEqual(base64, MD5(message)); |
|
}, |
|
function testHexCompute(t){ |
|
t.assertEqual(hex, MD5(message, ded.outputTypes.Hex)); |
|
}, |
|
function testStringCompute(t){ |
|
t.assertEqual(s, MD5(message, ded.outputTypes.String)); |
|
} |
|
]); |
|
});
|
|
|