我有一个函数可以解码二进制数据中的base64编码数据,但我不知道如何找到解码数据的长度。我使用openssl中的BIO函数。

unsigned char *unbase64(unsigned char *input, int length)
{
    BIO *b64, *bmem;

    unsigned char *buffer = (unsigned char *)malloc(length);
    memset(buffer, 0, length);

    b64 = BIO_new(BIO_f_base64());
    bmem = BIO_new_mem_buf(input, length);
    bmem = BIO_push(b64, bmem);

    BIO_read(bmem, buffer, length);

    BIO_free_all(bmem);

    return buffer;
}

最佳答案

BIO_read将返回读取的字节数。无论如何,您应该检查整个过程中的返回值。

10-01 19:00