Base64 icon indicating copy to clipboard operation
Base64 copied to clipboard

base64_decode bug

Open freejack71 opened this issue 3 years ago • 0 comments

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

freejack71 avatar Nov 11 '21 10:11 freejack71