Skip to content

Releases: xxtea/xxtea-html5

Version 1.1.6

27 Dec 03:01
Compare
Choose a tag to compare

Fix maximun call stack size exceeded

Version 1.1.5

07 Oct 06:24
Compare
Choose a tag to compare

Version 1.1.4

16 Feb 15:30
Compare
Choose a tag to compare

Fixed a bug in toBytes method.

Version 1.1.3

16 Feb 13:00
Compare
Choose a tag to compare

Added test with Open Sauce.

Version 1.1.1

28 Jan 10:23
Compare
Choose a tag to compare

Fixed two bugs on old android browsers.

Version 1.1.0

10 Dec 14:42
Compare
Choose a tag to compare
  • Fixed Emoji encode & decode bug.
  • Improved Long String encrypt and decrypt.
  • Added encryptToString and decryptToString, for example:
<!DOCTYPE html>
<html>
    <head>
        <title>XXTEA test</title>
        <meta charset="UTF-8">
        <script src="dist/xxtea.min.js" type="text/javascript"></script>
    </head>
    <body>
        <script type="text/javascript">
            var str = "Hello World! 你好,中国🇨🇳!";
            var key = "1234567890";
            var encrypt_data = xxtea.encryptToString(str, key);
            console.log(encrypt_data);
            var decrypt_data = xxtea.decryptToString(encrypt_data, key);
            console.assert(str === decrypt_data);
        </script>
    </body>
</html>

Version 1.0.1

01 Aug 13:37
Compare
Choose a tag to compare

Added bower.io support.