Created
March 23, 2018 15:00
-
-
Save sonOfRa/f95f9a1dee56740e106b84e108679e59 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* strip base64 from the string */ | |
decoded = apr_palloc(r->pool, apr_base64_decode_len(in)); | |
decodedlen = apr_base64_decode(decoded, in); | |
decoded[decodedlen] = '\0'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment