koinos / koinos-types

The Rosetta Stone of the Koinos ecosystem. Allows for the interpretation of Koinos data structures in a multitude of languages. Useful in the development of microservices, clients, and smart contracts.
MIT License
12 stars 3 forks source link

Implement base64 support in C++ #168

Closed theoreticalbts closed 3 years ago

theoreticalbts commented 3 years ago

Currently we use b58, however due to O(n^2) nature of b58 coding, this isn't ideal for large strings.

Let's use base64 instead.

We can't change the default in C++ from base58 to base64 until Golang supports base64. So we should change the C++ and Golang defaults together as part of #169.