summaryrefslogtreecommitdiff
path: root/lib/libtelnet/misc-proto.h
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>1998-03-12 04:48:56 +0000
committerArtur Grabowski <art@cvs.openbsd.org>1998-03-12 04:48:56 +0000
commitc92f682d7d5ceca500a5fcdd24089ff4cd403652 (patch)
tree834df750fb418c9ccffede3afc9d34b26c163929 /lib/libtelnet/misc-proto.h
parent080599dec65befdb0705fb5e6a001b1550da8a49 (diff)
support for encryption from kth-krb 0.9.8
Diffstat (limited to 'lib/libtelnet/misc-proto.h')
-rw-r--r--lib/libtelnet/misc-proto.h21
1 files changed, 19 insertions, 2 deletions
diff --git a/lib/libtelnet/misc-proto.h b/lib/libtelnet/misc-proto.h
index 3c2f5b759c3..2f67ff0b50f 100644
--- a/lib/libtelnet/misc-proto.h
+++ b/lib/libtelnet/misc-proto.h
@@ -31,11 +31,23 @@
* SUCH DAMAGE.
*
* from: @(#)misc-proto.h 8.1 (Berkeley) 6/4/93
- * $OpenBSD: misc-proto.h,v 1.2 1996/03/19 23:15:54 niklas Exp $
+ * $OpenBSD: misc-proto.h,v 1.3 1998/03/12 04:48:52 art Exp $
* $NetBSD: misc-proto.h,v 1.5 1996/02/24 01:15:23 jtk Exp $
*/
/*
+ * This source code is no longer held under any constraint of USA
+ * `cryptographic laws' since it was exported legally. The cryptographic
+ * functions were removed from the code and a "Bones" distribution was
+ * made. A Commodity Jurisdiction Request #012-94 was filed with the
+ * USA State Department, who handed it to the Commerce department. The
+ * code was determined to fall under General License GTDA under ECCN 5D96G,
+ * and hence exportable. The cryptographic interfaces were re-added by Eric
+ * Young, and then KTH proceeded to maintain the code in the free world.
+ *
+ */
+
+/*
* Copyright (C) 1990 by the Massachusetts Institute of Technology
*
* Export of this software from the United States of America is assumed
@@ -63,7 +75,11 @@
void auth_encrypt_init __P((char *, char *, char *, int));
void auth_encrypt_user __P((char *));
void auth_encrypt_connect __P((int));
-void printd __P((unsigned char *, int));
+void printd __P((const unsigned char *, int));
+char **genget __P((char *, char **, int));
+int isprefix __P((char *, char *));
+int Ambiguous __P((void *));
+
/*
* These functions are imported from the application
@@ -73,4 +89,5 @@ void net_encrypt __P((void));
int telnet_spin __P((void));
char *telnet_getenv __P((char *));
char *telnet_gets __P((char *, char *, int, int));
+void printsub __P((char, unsigned char *, int));
#endif