关于加密解密 Base64 and URL and Hex Encoding and Decodi(4)


<body> 
<form name=code onsubmit="return false()"> 
<textarea name=text style='width:100%;height:75%;' onfocus='if (this.value=="Enter text to encode or decode here."){this.value="";}'>Enter text to encode or decode here.</textarea> 
<table> 
<tr><td align=center> 
<input value="Encode" type=button onclick="document.code.text.value=urlEncode(document.code.text.value);"> 
</td><td align=center> 
URL 
</td><td align=center> 
<input value="Decode" type=button onclick="document.code.text.value=urlDecode(document.code.text.value);"> 
</td></tr> 
<tr><td align=center> 
<input value="Encode" type=button onclick="document.code.text.value=encodeBase64(document.code.text.value);"> 
</td><td align=center> 
Base 64 
</td><td align=center> 
<input value="Decode" type=button onclick="document.code.text.value=decodeBase64(document.code.text.value);"> 
</td></tr> 
<tr><td align=center> 
<input value="Encode" type=button onclick="document.code.text.value=encodeHex(document.code.text.value);"> 
</td><td align=center> 
Hex 
</td><td align=center> 
<input value="Decode" type=button onclick="document.code.text.value=decodeHex(document.code.text.value);"> 
</td></tr> 
<tr><td align=center> 
</td><td align=center> 
<input type=reset value=Clear> 
</td><td align=center> 
</td></tr> 
</table> 
</form> 
<hr> 
Base64 encode/decode was ported from a <a href="http://ostermiller.org/utils/Base64.html">Java Base64 encoder/decoder</a>.<br> 
Base64 encode/decode was ported to <a href="http://ostermiller.org/base64_actionscript.html">Macromedia Actionscript</a>.<br> 
<h3>License</h3> 
<p>This program is free software; you can redistribute it and/or modify it 
under the terms of the GNU General Public License as published by the Free 
Software Foundation; either version 2 of the License, or (at your option) 
any later version.</p> 
<p>This program is distributed in the hope that it will be useful, 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/1708.html