b64/encode.h
Eric aacf2324c7 improve decode time
atob() has been replaced with a lookup table, removing previous
conditionals and function calls necessary to decode.
2025-05-29 16:02:45 +02:00

10 lines
173 B
C

#ifndef ENCODE_H
#define ENCODE_H
int
encode(unsigned char *op, int olen, unsigned char *sp, int url);
int
decode(unsigned char *sp, int slen, unsigned char *op);
#endif