Base64
Base64 copied to clipboard
base64_decode bug
char* base64_decode(char* cipher) { //char* plain = malloc(strlen(cipher) * 3 / 4); char* plain = malloc(strlen(cipher) * 3 / 4 + 1); ... plain[p] = '\0';