aboutsummaryrefslogtreecommitdiff
path: root/base64.c
blob: b1d4737af014037579b92353313a5cca78bbc3b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#include "base64.h"
#include <openssl/evp.h>
#include <errno.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

static void remove_lf(char *b64)
{
    while ((b64 = strchr(b64, '\n')))
        memcpy(b64, b64 + 1, strlen(b64));
}

static size_t base64len(const size_t n)
{
    /* Read EVP_EncodeInit(3) for further reference. */
    return ((n / 48) * 65) + (n % 48 ? 1 + ((n / 3) + 1) * 4 : 0);
}

static size_t decodedlen(const size_t n)
{
    return ((n / 64) * 48) + (n % 64 ? (n / 4) * 3 : 0);
}

char *base64_encode(const void *const buf, const size_t n)
{
    EVP_ENCODE_CTX *const ctx = EVP_ENCODE_CTX_new();
    char *ret = NULL;
    unsigned char *b64 = NULL;

    if (!ctx)
    {
        fprintf(stderr, "%s: EVP_ENCODE_CTX_new failed\n", __func__);
        goto end;
    }

    const size_t b64len = base64len(n);

    if (!(b64 = malloc(b64len + 1)))
    {
        fprintf(stderr, "%s: malloc(3): %s\n", __func__, strerror(errno));
        goto end;
    }

    EVP_EncodeInit(ctx);

    size_t rem = n, done = 0;
    int outl = b64len;

    while (rem)
    {
        const size_t i = n - rem, inl = rem > 48 ? 48 : rem;
        const unsigned char *const in = buf;

        if (!EVP_EncodeUpdate(ctx, &b64[done], &outl, &in[i], inl))
        {
            fprintf(stderr, "%s: EVP_EncodeUpdate failed\n", __func__);
            goto end;
        }

        done += outl;
        rem -= inl;
    }

    EVP_EncodeFinal(ctx, b64, &outl);
    ret = (char *)b64;
    remove_lf(ret);

end:
    if (!ret)
        free(b64);

    EVP_ENCODE_CTX_free(ctx);
    return ret;
}

void *base64_decode(const char *const b64, size_t *const n)
{
    void *ret = NULL;
    const size_t len = strlen(b64), dlen = decodedlen(len);
    EVP_ENCODE_CTX *const ctx = EVP_ENCODE_CTX_new();
    unsigned char *const buf = malloc(dlen);

    if (!buf)
    {
        fprintf(stderr, "%s: malloc(3): %s\n", __func__, strerror(errno));
        goto end;
    }
    else if (!ctx)
    {
        fprintf(stderr, "%s: EVP_ENCODE_CTX_new failed\n", __func__);
        goto end;
    }

    EVP_DecodeInit(ctx);

    size_t rem = len, done = 0;
    int outl = dlen;

    while (rem)
    {
        const size_t i = len - rem, inl = rem > 64 ? 64 : rem;
        const unsigned char *const in = (const unsigned char *)b64;

        if (EVP_DecodeUpdate(ctx, &buf[done], &outl, &in[i], inl) < 0)
        {
            fprintf(stderr, "%s: EVP_EncodeUpdate failed\n", __func__);
            goto end;
        }

        done += outl;
        rem -= inl;
    }

    EVP_DecodeFinal(ctx, buf, &outl);
    *n = done;
    ret = buf;

end:
    if (!ret)
        free(buf);

    EVP_ENCODE_CTX_free(ctx);
    return ret;
}