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.
24 lines
661 B
24 lines
661 B
2 years ago
|
<html>
|
||
|
<head>
|
||
|
<title>Blowfish Test</title>
|
||
|
<script language="JavaScript" type="text/javascript">
|
||
|
// Dojo configuration
|
||
|
djConfig = {
|
||
|
isDebug: true
|
||
|
};
|
||
|
</script>
|
||
|
<script language="JavaScript" type="text/javascript" src="../../dojo.js"></script>
|
||
|
<script language="JavaScript" type="text/javascript" src="../jsunit_browser.js"></script>
|
||
|
<script language="JavaScript" type="text/javascript" src="test_Blowfish.js"></script>
|
||
|
<script language="JavaScript" type="text/javascript">
|
||
|
function init(){
|
||
|
test_Blowfish_encryption();
|
||
|
test_Blowfish_decryption();
|
||
|
}
|
||
|
dojo.addOnLoad(init);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
</body>
|
||
|
</html>
|