{"versions":{"0.0.2":{"name":"binascii","version":"0.0.2","author":{"name":"Michał Budzyński","email":"michal@virtualdesign.pl"},"repository":{"type":"git","url":"git+ssh://git@github.com/michalbe/binascii.git"},"devDependencies":{"assert":"^1.1.1","jshint":"^2.5.2","precommit-hook":"^1.0.7"},"scripts":{"test":"node tests/binascii-tests.js","lint":"node node_modules/jshint/bin/jshint ."},"gitHead":"ce9bea055d37d16185312e900c5881ad0ccb449f","description":"Port of binascii library from Python","bugs":{"url":"https://github.com/michalbe/binascii/issues"},"homepage":"https://github.com/michalbe/binascii#readme","_id":"binascii@0.0.2","_shasum":"a7f8a8801dbccf8b1756b743daa0fee9e2d9e0ee","_from":".","_npmVersion":"3.10.9","_nodeVersion":"8.1.3","_npmUser":{"name":"anonymous","email":"michal@virtualdesign.pl"},"dist":{"shasum":"a7f8a8801dbccf8b1756b743daa0fee9e2d9e0ee","size":3318,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/binascii/-/binascii-0.0.2.tgz","integrity":"sha512-rA2CrUl1+6yKrn+XgLs8Hdy18OER1UW146nM+ixzhQXDY+Bd3ySkyIJGwF2a4I45JwbvF1mDL/nWkqBwpOcdBA=="},"maintainers":[{"name":"anonymous","email":"michal@virtualdesign.pl"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/binascii-0.0.2.tgz_1512404685718_0.6502868544775993"},"directories":{},"publish_time":1512404685886,"_hasShrinkwrap":false,"_cnpm_publish_time":1512404685886,"_cnpmcore_publish_time":"2021-12-16T23:32:17.976Z","contributors":[]},"0.0.1":{"name":"binascii","version":"0.0.1","author":{"name":"Michał Budzyński","email":"michal@virtualdesign.pl"},"repository":{"type":"git","url":"git@github.com:michalbe/binascii.git"},"devDependencies":{"assert":"^1.1.1","jshint":"^2.5.2","precommit-hook":"^1.0.7"},"scripts":{"test":"node tests/binascii-tests.js","lint":"node node_modules/jshint/bin/jshint ."},"gitHead":"51ca4586c23904d91d6140d4b1130f55885df841","description":"Port of binascii library from Python","bugs":{"url":"https://github.com/michalbe/binascii/issues"},"homepage":"https://github.com/michalbe/binascii","_id":"binascii@0.0.1","_shasum":"58638aad5158ecd1e926c421aec77b68371f0b5a","_from":".","_npmVersion":"1.4.20","_npmUser":{"name":"anonymous","email":"michal@virtualdesign.pl"},"maintainers":[{"name":"anonymous","email":"michal@virtualdesign.pl"}],"dist":{"shasum":"58638aad5158ecd1e926c421aec77b68371f0b5a","size":3272,"noattachment":false,"tarball":"http://123.232.10.234:8212/nexus/content/groups/npm-public/binascii/-/binascii-0.0.1.tgz","integrity":"sha512-aUkayxNMjryx2I/wF864X/H9xDr5ljp80l1HVuxj43iChaGNcn7prBcLX8+eb2tD38TPf8eMXGDQY2C4IE0SDA=="},"directories":{},"publish_time":1407249517564,"_hasShrinkwrap":false,"_cnpm_publish_time":1407249517564,"_cnpmcore_publish_time":"2021-12-16T23:32:18.218Z","contributors":[]}},"dist-tags":{"latest":"0.0.2"},"name":"binascii","time":{"created":"2022-01-26T21:21:17.090Z","modified":"2023-08-04T09:46:50.238Z","0.0.2":"2017-12-04T16:24:45.886Z","0.0.1":"2014-08-05T14:38:37.564Z"},"readme":"# binascii by [@michalbe](http://github.com/michalbe) #\nPort of binascii library from Python\n\n\n### What ###\n> The binascii module contains a number of methods to convert between binary and various ASCII-encoded binary representations.\n\nMore: [python binascii docs](https://docs.python.org/2/library/binascii.html)\nFor now only two methods are implemented - `hexlify` with `b2a_hex` alias and 'unhexlify' (called also `a2b_hex`).\n### How to use: ###\n```\nnpm install binascii\n```\nthen:\n```javascript\nvar ba = require('binascii');\n\nconsole.log(ba.hexlify('A')); // result: '41'\nconsole.log(ba.unhexlify('377abcaf271c')); // result: '7z¼¯'\\u001c'\n```\n\n### API ###\n  * `hexlify` - Return the hexadecimal representation of the binary data. Every byte of data is converted into the corresponding 2-digit hex representation.\n  * `unhexlify` - Return the binary data represented by the hexadecimal string. This function is the inverse of `hexlify`.\n  * `b2a_hex` - alias of `hexlify`\n  * `a2b_hex` - alias of `unhexlify`\n\n### To Do ###\noriginal library supports also:\n  * a2b_uu\n  * b2a_uu\n  * a2b_base64\n  * b2a_base64\n  * a2b_qp\n  * b2a_qp\n  * a2b_hqx\n  * rledecode_hqx\n  * rlecode_hqx\n  * b2a_hqx\n  * crc_hqx\n  * crc32\n\nInterested in implementing any of those? Check [binascii docs](https://docs.python.org/2/library/binascii.html) for more info on how those methods should work","users":{}}