-
Notifications
You must be signed in to change notification settings - Fork 378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base64_decode() issue #274
Comments
Yes, this implementation is bugged. |
actually i think that such api is required(#273 ), i'm not sure that the best way is to implement it from scratch. |
utils_base64ToOpaque() is now base64_decode() and part of examples/shared |
Is there a plan to fix this api? |
Personnaly, like every other issues tagged |
I think this is resolved by utils_base64Decode introduced in #428. |
It should be fixed. |
i'm getting segfault on conversion of "MA==" base64 string to Opaque from utils_base64ToOpaque function in the following line:
*bufferP[result_index - 3] = (tmp[0] << 2) | (tmp[1] >> 4);
The text was updated successfully, but these errors were encountered: