1Name: modp base64 decoder 2Short Name: stringencoders 3URL: https://github.com/client9/stringencoders 4Version: unknown 5License: BSD 6Security Critical: yes 7 8Description: 9The source code was modified from upstream as follows: 10- Removed the inclusion of modp's config.h 11- Fixed compilation errors that occur under VC8 12- Renamed modp_b64.c to modp_b64.cc to force it to be compiled as C++ and so 13 the inclusion of basictypes.h could be possible 14- Made code safe on 64-bit systems 15- Removed misaligned read/writes on little-endian systems 16- Removed unreachable code 17- Extended the API so callers can avoid overload for base64 encode 18- Removed big endian support entirely 19- Removed std::string APIs 20- Added multiple decoding options to support Blink callers 21- Added modp_b64_encode_data which doesn't append a null terminator 22