├── .gitignore ├── .npmignore ├── base64.cc ├── binding.gyp ├── package.json ├── readme.txt └── test ├── data ├── data-png.png ├── data-rand-01 ├── data-rand-02 ├── data-rand-03 ├── data-rand-04 ├── data-rand-05 ├── data-rand-06 ├── data-rand-07 ├── data-rand-08 ├── data-rand-09 ├── data-rand-10 ├── data-rand-11 ├── data-rand-12 ├── data-rand-13 ├── data-rand-14 ├── data-rand-15 ├── data-rand-16 ├── data-rand-17 ├── data-rand-18 ├── data-rand-19 ├── data-rand-20 └── data-source-code.c ├── encode.js ├── hashes.json ├── perl-base64-encode.pl └── test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | base64.node 2 | build 3 | rgba-terminal.dat 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | base64.node 2 | build 3 | rgba-terminal.dat 4 | -------------------------------------------------------------------------------- /base64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/base64.cc -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/binding.gyp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/readme.txt -------------------------------------------------------------------------------- /test/data/data-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-png.png -------------------------------------------------------------------------------- /test/data/data-rand-01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-01 -------------------------------------------------------------------------------- /test/data/data-rand-02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-02 -------------------------------------------------------------------------------- /test/data/data-rand-03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-03 -------------------------------------------------------------------------------- /test/data/data-rand-04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-04 -------------------------------------------------------------------------------- /test/data/data-rand-05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-05 -------------------------------------------------------------------------------- /test/data/data-rand-06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-06 -------------------------------------------------------------------------------- /test/data/data-rand-07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-07 -------------------------------------------------------------------------------- /test/data/data-rand-08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-08 -------------------------------------------------------------------------------- /test/data/data-rand-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-09 -------------------------------------------------------------------------------- /test/data/data-rand-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-10 -------------------------------------------------------------------------------- /test/data/data-rand-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-11 -------------------------------------------------------------------------------- /test/data/data-rand-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-12 -------------------------------------------------------------------------------- /test/data/data-rand-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-13 -------------------------------------------------------------------------------- /test/data/data-rand-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-14 -------------------------------------------------------------------------------- /test/data/data-rand-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-15 -------------------------------------------------------------------------------- /test/data/data-rand-16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-16 -------------------------------------------------------------------------------- /test/data/data-rand-17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-17 -------------------------------------------------------------------------------- /test/data/data-rand-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-18 -------------------------------------------------------------------------------- /test/data/data-rand-19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-19 -------------------------------------------------------------------------------- /test/data/data-rand-20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-rand-20 -------------------------------------------------------------------------------- /test/data/data-source-code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/data/data-source-code.c -------------------------------------------------------------------------------- /test/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/encode.js -------------------------------------------------------------------------------- /test/hashes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/hashes.json -------------------------------------------------------------------------------- /test/perl-base64-encode.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/perl-base64-encode.pl -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pkrumins/node-base64/HEAD/test/test.sh --------------------------------------------------------------------------------