aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/src/base64.h
blob: 085063371c30b3f1f0e7a7a92865c2e7bb35f50e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  
                                                    













                                                                         
/*
 * Copyright (c) 2023 Egor Tensin <egor@tensin.name>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __BASE64_H__
#define __BASE64_H__

#include <stddef.h>

int base64_encode(const unsigned char *src, size_t src_len, char **dst);
int base64_decode(const char *src, unsigned char **dst, size_t *dst_len);

#endif