]> tinc-vpn.org Git - tinc/blobdiff - src/ed25519/ecdsagen.c
Rename base64 funcs to show they're not RFC-compliant.
[tinc] / src / ed25519 / ecdsagen.c
index ede51367ae59e5113d78402d06082eec4dbb347a..06b41c86ed6190fcd9bcc065b071a5c5e77a9ae7 100644 (file)
@@ -54,7 +54,7 @@ static bool write_pem(FILE *fp, const char *type, void *vbuf, size_t size) {
 
        while(size) {
                size_t todo = size > 48 ? 48 : size;
-               b64encode(buf, base64, todo);
+               b64encode_tinc(buf, base64, todo);
                fprintf(fp, "%s\n", base64);
                buf += todo;
                size -= todo;