summaryrefslogtreecommitdiffstats
path: root/util/base64.h
blob: c0f62e2bf9002f5e9825e71c4e30d9b7b2922d60 (plain)
1
2
3
4
5
6
7
8
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef _BASE64_H
#define _BASE64_H

int base64_encode(const unsigned char *src, int len, char *dst);
int base64_decode(const char *src, int len, unsigned char *dst);

#endif /* _BASE64_H */