summaryrefslogtreecommitdiff
path: root/crypto/openssh/uuencode.c
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2000-09-25 21:57:54 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2000-09-25 21:57:54 +0000
commitba94d0cea3d853d19732f64a17cd6207dc85ad5f (patch)
tree38b022cfba11bdd4a90667961e31cfc475ffc7c3 /crypto/openssh/uuencode.c
parent2641b0c407077fa8c3032d87d15ac6a103b0ed1b (diff)
Diffstat (limited to 'crypto/openssh/uuencode.c')
-rw-r--r--crypto/openssh/uuencode.c50
1 files changed, 0 insertions, 50 deletions
diff --git a/crypto/openssh/uuencode.c b/crypto/openssh/uuencode.c
deleted file mode 100644
index fc84d5a5830b5..0000000000000
--- a/crypto/openssh/uuencode.c
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright (c) 2000 Markus Friedl. All rights reserved.
- */
-#include "includes.h"
-#include "xmalloc.h"
-
-#include <resolv.h>
-
-int
-uuencode(unsigned char *src, unsigned int srclength,
- char *target, size_t targsize)
-{
- return __b64_ntop(src, srclength, target, targsize);
-}
-
-int
-uudecode(const char *src, unsigned char *target, size_t targsize)
-{
- int len;
- char *encoded, *p;
-
- /* copy the 'readonly' source */
- encoded = xstrdup(src);
- /* skip whitespace and data */
- for (p = encoded; *p == ' ' || *p == '\t'; p++)
- ;
- for (; *p != '\0' && *p != ' ' && *p != '\t'; p++)
- ;
- /* and remote trailing whitespace because __b64_pton needs this */
- *p = '\0';
- len = __b64_pton(encoded, target, targsize);
- xfree(encoded);
- return len;
-}
-
-void
-dump_base64(FILE *fp, unsigned char *data, int len)
-{
- unsigned char *buf = xmalloc(2*len);
- int i, n;
- n = uuencode(data, len, buf, 2*len);
- for (i = 0; i < n; i++) {
- fprintf(fp, "%c", buf[i]);
- if (i % 70 == 69)
- fprintf(fp, "\n");
- }
- if (i % 70 != 69)
- fprintf(fp, "\n");
- xfree(buf);
-}